diff options
author | Daniel P. Berrange | 2013-02-25 16:20:43 +0100 |
---|---|---|
committer | Anthony Liguori | 2013-02-26 20:29:53 +0100 |
commit | 0d20664018a401120af28ff80ac8d22fbc887956 (patch) | |
tree | 59536a472e8ff86a0f2cffbab4d5ae86f18a2634 /ui | |
parent | Replace expose-event handler with draw handler in GTK3 (diff) | |
download | qemu-0d20664018a401120af28ff80ac8d22fbc887956.tar.gz qemu-0d20664018a401120af28ff80ac8d22fbc887956.tar.xz qemu-0d20664018a401120af28ff80ac8d22fbc887956.zip |
Ensure x_keymap.o is built when GTK is enabled
The x_keymap.o file is required by both GTK and SDL builds,
so it must be explicitly listed as a GTK dep to ensure the
linker works when SDL is disabled
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
Message-id: 1361805646-6425-11-git-send-email-berrange@redhat.com
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'ui')
-rw-r--r-- | ui/Makefile.objs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/Makefile.objs b/ui/Makefile.objs index 85c50cd89b..6ddc0def6d 100644 --- a/ui/Makefile.objs +++ b/ui/Makefile.objs @@ -13,7 +13,7 @@ common-obj-$(CONFIG_SDL) += sdl.o sdl_zoom.o x_keymap.o common-obj-$(CONFIG_COCOA) += cocoa.o common-obj-$(CONFIG_CURSES) += curses.o common-obj-$(CONFIG_VNC) += $(vnc-obj-y) -common-obj-$(CONFIG_GTK) += gtk.o +common-obj-$(CONFIG_GTK) += gtk.o x_keymap.o $(obj)/sdl.o $(obj)/sdl_zoom.o: QEMU_CFLAGS += $(SDL_CFLAGS) |