From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57933) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vm2c4-0001em-Dj for qemu-devel@nongnu.org; Thu, 28 Nov 2013 09:30:46 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Vm2bw-0006kq-7O for qemu-devel@nongnu.org; Thu, 28 Nov 2013 09:30:40 -0500 Received: from mx1.redhat.com ([209.132.183.28]:9061) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vm2bv-0006kO-UH for qemu-devel@nongnu.org; Thu, 28 Nov 2013 09:30:32 -0500 From: Gerd Hoffmann Date: Thu, 28 Nov 2013 15:29:57 +0100 Message-Id: <1385649010-7034-3-git-send-email-kraxel@redhat.com> In-Reply-To: <1385649010-7034-1-git-send-email-kraxel@redhat.com> References: <1385649010-7034-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [RFC PATCH 02/15] input: rename file to legacy List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Dave Airlie , Gerd Hoffmann , Anthony Liguori Rename ui/input.c to ui/input-legacy.c. We are going to replace it step by step. Signed-off-by: Gerd Hoffmann --- ui/Makefile.objs | 2 +- ui/{input.c => input-legacy.c} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename ui/{input.c => input-legacy.c} (100%) diff --git a/ui/Makefile.objs b/ui/Makefile.objs index f33be47..39ceadc 100644 --- a/ui/Makefile.objs +++ b/ui/Makefile.objs @@ -7,7 +7,7 @@ vnc-obj-$(CONFIG_VNC_SASL) += vnc-auth-sasl.o vnc-obj-$(CONFIG_VNC_WS) += vnc-ws.o vnc-obj-y += vnc-jobs.o -common-obj-y += keymaps.o console.o cursor.o input.o qemu-pixman.o +common-obj-y += keymaps.o console.o cursor.o input-legacy.o qemu-pixman.o common-obj-$(CONFIG_SPICE) += spice-core.o spice-input.o spice-display.o common-obj-$(CONFIG_SDL) += sdl.o sdl_zoom.o x_keymap.o common-obj-$(CONFIG_COCOA) += cocoa.o diff --git a/ui/input.c b/ui/input-legacy.c similarity index 100% rename from ui/input.c rename to ui/input-legacy.c -- 1.8.3.1