From: Paul Eggert Date: Fri, 22 Jul 2011 21:19:32 +0000 (-0700) Subject: * lib/autoconf/specific.m4 (AC_USE_SYSTEM_EXTENSIONS): Quote cleanly. X-Git-Tag: v2.68b~65 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c35cade05f92ec70f7e32ba9c9974e80a1b2999e;p=thirdparty%2Fautoconf.git * lib/autoconf/specific.m4 (AC_USE_SYSTEM_EXTENSIONS): Quote cleanly. This is imported from gnulib. gnulib also has an HP-UX 11.11 fix, but let's see if we can do that another way, as it's pretty heaviweight. --- diff --git a/ChangeLog b/ChangeLog index e2253508..2301762b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2011-07-22 Paul Eggert + + * lib/autoconf/specific.m4 (AC_USE_SYSTEM_EXTENSIONS): Quote cleanly. + This is imported from gnulib. gnulib also has an HP-UX 11.11 fix, but + let's see if we can do that another way, as it's pretty heaviweight. + 2011-07-22 Eric Blake docs: fix minor doc problems diff --git a/lib/autoconf/specific.m4 b/lib/autoconf/specific.m4 index 2630edb5..5a9ca94d 100644 --- a/lib/autoconf/specific.m4 +++ b/lib/autoconf/specific.m4 @@ -402,9 +402,9 @@ dnl configure.ac when using autoheader 2.62. AC_CACHE_CHECK([whether it is safe to define __EXTENSIONS__], [ac_cv_safe_to_define___extensions__], [AC_COMPILE_IFELSE( - [AC_LANG_PROGRAM([ -# define __EXTENSIONS__ 1 - AC_INCLUDES_DEFAULT])], + [AC_LANG_PROGRAM([[ +# define __EXTENSIONS__ 1 + ]AC_INCLUDES_DEFAULT])], [ac_cv_safe_to_define___extensions__=yes], [ac_cv_safe_to_define___extensions__=no])]) test $ac_cv_safe_to_define___extensions__ = yes &&