From: Yang Tse Date: Thu, 7 May 2009 14:03:04 +0000 (+0000) Subject: Fix an m4 overquoting triggering a spurious 'AS_TR_CPP' symbol definition X-Git-Tag: curl-7_19_5~74 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f32dc6b82834916f2f0c059f444c0ddafb0b8afd;p=curl Fix an m4 overquoting triggering a spurious 'AS_TR_CPP' symbol definition attempt in generated config.h --- diff --git a/ares/configure.ac b/ares/configure.ac index b779c2f76..4b93fb4b1 100644 --- a/ares/configure.ac +++ b/ares/configure.ac @@ -749,7 +749,7 @@ AC_CHECK_FUNCS([bitncmp \ ],[ AC_MSG_RESULT([yes]) eval "ac_cv_func_$func=yes" - AC_DEFINE_UNQUOTED([AS_TR_CPP([HAVE_$func])], [1], + AC_DEFINE_UNQUOTED(AS_TR_CPP([HAVE_$func]), [1], [Define to 1 if you have the $func function.]) ],[ AC_MSG_RESULT([but still no]) diff --git a/configure.ac b/configure.ac index 391d7380b..8e0928e96 100644 --- a/configure.ac +++ b/configure.ac @@ -2105,7 +2105,7 @@ AC_CHECK_FUNCS([basename \ ],[ AC_MSG_RESULT([yes]) eval "ac_cv_func_$func=yes" - AC_DEFINE_UNQUOTED([AS_TR_CPP([HAVE_$func])], [1], + AC_DEFINE_UNQUOTED(AS_TR_CPP([HAVE_$func]), [1], [Define to 1 if you have the $func function.]) ],[ AC_MSG_RESULT([but still no])