diff options
author | Yang Tse <yangsita@gmail.com> | 2009-05-07 14:03:04 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2009-05-07 14:03:04 +0000 |
commit | f32dc6b82834916f2f0c059f444c0ddafb0b8afd (patch) | |
tree | 72870af66d90487ea1ab04c0b2fc4345b4ed4be9 /ares | |
parent | 7a928b40f3d2615021faa1e1c921e30d5c983875 (diff) |
Fix an m4 overquoting triggering a spurious 'AS_TR_CPP' symbol definition
attempt in generated config.h
Diffstat (limited to 'ares')
-rw-r--r-- | ares/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
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]) |