Compile most Xen files only once
authorBlue Swirl <blauwirbel@gmail.com>
Thu, 21 May 2009 15:54:48 +0000 (15:54 +0000)
committerBlue Swirl <blauwirbel@gmail.com>
Thu, 21 May 2009 15:54:48 +0000 (15:54 +0000)
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>

Makefile
Makefile.target
configure
hw/xen_backend.c

index bbb5e91..e993ec6 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -189,6 +189,13 @@ endif
 
 LIBS+=$(VDE_LIBS)
 
+# xen backend driver support
+XEN_OBJS := xen_backend.o xen_devconfig.o
+XEN_OBJS += xen_console.o xenfb.o xen_disk.o xen_nic.o
+ifdef CONFIG_XEN
+  OBJS += $(XEN_OBJS)
+endif
+
 cocoa.o: cocoa.m
 
 keymaps.o: keymaps.c keymaps.h
index f327bf2..4de29f8 100644 (file)
@@ -541,8 +541,7 @@ LIBS += $(CONFIG_BLUEZ_LIBS)
 endif
 
 # xen backend driver support
-XEN_OBJS := xen_machine_pv.o xen_backend.o xen_devconfig.o xen_domainbuild.o
-XEN_OBJS += xen_console.o xenfb.o xen_disk.o xen_nic.o
+XEN_OBJS := xen_machine_pv.o xen_domainbuild.o
 ifeq ($(CONFIG_XEN), yes)
   OBJS += $(XEN_OBJS)
   LIBS += $(XEN_LIBS)
index 186e535..36596ba 100755 (executable)
--- a/configure
+++ b/configure
@@ -1708,6 +1708,11 @@ else
     exit 1
 fi
 
+if test "$xen" = "yes" ;
+    then
+    echo "CONFIG_XEN=yes" >> $config_mak
+fi
+
 tools=
 if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
   tools="qemu-img\$(EXESUF) $tools"
index 2f2ec7f..76d07ec 100644 (file)
@@ -38,6 +38,7 @@
 
 #include "hw.h"
 #include "qemu-char.h"
+#include "qemu-log.h"
 #include "xen_backend.h"
 
 /* ------------------------------------------------------------- */