aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBlue Swirl <blauwirbel@gmail.com>2009-09-12 09:58:46 +0000
committerBlue Swirl <blauwirbel@gmail.com>2009-09-12 09:58:46 +0000
commitde5071c5515234cddbeaf1e6b794e1893f460b8a (patch)
tree473f3526679357d55f0034fa8ebe3f9dea1a534d /configure
parentFix sys-queue.h conflict for good (diff)
downloadqemu-kvm-de5071c5515234cddbeaf1e6b794e1893f460b8a.tar.gz
qemu-kvm-de5071c5515234cddbeaf1e6b794e1893f460b8a.tar.bz2
qemu-kvm-de5071c5515234cddbeaf1e6b794e1893f460b8a.zip
Fix a Sparse warning about redefinition of offsetof()
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure15
1 files changed, 15 insertions, 0 deletions
diff --git a/configure b/configure
index 5232172f3..5570005a0 100755
--- a/configure
+++ b/configure
@@ -1602,6 +1602,18 @@ if test "$darwin" != "yes" -a "$mingw32" != "yes" -a "$solaries" != yes -a \
libs_softmmu="-lutil $libs_softmmu"
fi
+##########################################
+# check if the compiler defines offsetof
+
+need_offsetof=yes
+cat > $TMPC << EOF
+#include <stddef.h>
+int main(void) { struct s { int f; }; return offsetof(struct s, f); }
+EOF
+if compile_prog "" "" ; then
+ need_offsetof=no
+fi
+
# End of CC checks
# After here, no more $cc or $ld runs
@@ -1901,6 +1913,9 @@ fi
if test "$fdt" = "yes" ; then
echo "CONFIG_FDT=y" >> $config_host_mak
fi
+if test "$need_offsetof" = "yes" ; then
+ echo "CONFIG_NEED_OFFSETOF=y" >> $config_host_mak
+fi
# XXX: suppress that
if [ "$bsd" = "yes" ] ; then