From: Diego Elio Pettenò Date: Mon, 13 Dec 2010 13:44:47 +0000 (+0100) Subject: build: quote AC_LANG_PROGRAM to avoid warnings with autoconf 2.68 X-Git-Tag: v0.8.7~104 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=30a4ee84c4537dc3d8c799b7cc3f6ae7840297c9;p=thirdparty%2Flibvirt.git build: quote AC_LANG_PROGRAM to avoid warnings with autoconf 2.68 --- diff --git a/configure.ac b/configure.ac index c194510293..64e76dce31 100644 --- a/configure.ac +++ b/configure.ac @@ -73,7 +73,7 @@ VERSION_SCRIPT_FLAGS=-Wl,--version-script= LIBVIRT_COMPILE_WARNINGS([maximum]) AC_MSG_CHECKING([for CPUID instruction]) -AC_COMPILE_IFELSE(AC_LANG_PROGRAM( +AC_COMPILE_IFELSE([AC_LANG_PROGRAM( [[ #include ]], @@ -83,7 +83,7 @@ AC_COMPILE_IFELSE(AC_LANG_PROGRAM( "cpuid" : "=a" (eax), "=b" (ebx), "=c" (ecx), "=d" (edx) : "a" (eax)); - ]]), + ]])], [have_cpuid=yes], [have_cpuid=no]) if test "x$have_cpuid" = xyes; then