From: Jan Kiszka Date: Wed, 10 Apr 2013 08:29:47 +0000 (+0200) Subject: Add linux-headers to QEMU_INCLUDES X-Git-Tag: qemu-xen-4.4.0-rc1~6^2~713^2~10 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=fd123245b98fd6e13d829878f25b30a9417f4bfc;p=qemu-upstream-4.4-testing.git Add linux-headers to QEMU_INCLUDES virtio/dataplane/vring.c requires the Linux headers and is built for all targets. So we need to add the corresponding include to QEMU_INCLUDES to avoid that outdated distribution headers are used. Signed-off-by: Jan Kiszka Signed-off-by: Paolo Bonzini --- diff --git a/configure b/configure index 73df18140..258c82aba 100755 --- a/configure +++ b/configure @@ -544,6 +544,7 @@ Haiku) if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then audio_possible_drivers="$audio_possible_drivers fmod" fi + QEMU_INCLUDES="-I\$(SRC_PATH)/linux-headers $QEMU_INCLUDES" ;; esac @@ -4227,10 +4228,6 @@ else fi includes="-I\$(SRC_PATH)/tcg $includes" -if test "$linux" = "yes" ; then - includes="-I\$(SRC_PATH)/linux-headers $includes" -fi - for i in $ARCH $TARGET_BASE_ARCH ; do case "$i" in alpha)