aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2008-05-20 04:23:30 +0000
committerYang Tse <yangsita@gmail.com>2008-05-20 04:23:30 +0000
commit862049c4902a3d2d2e77585a32840d00befc1dd8 (patch)
tree5b0607a0c4210807514162ebc2445b888b6270f1 /configure.ac
parenta8fc98aa30a895bc8f0535192e11f3ae05b790bf (diff)
fix underquoting of AC_LANG_PROGRAM arguments
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index b5060a013..0dcd3648b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2251,7 +2251,7 @@ AC_HELP_STRING([--disable-ares],[Disable c-ares for name lookups]),
dnl check it because it might not have been built yet)
AC_MSG_CHECKING([that c-ares is good and recent enough])
AC_LINK_IFELSE([
- AC_LANG_PROGRAM([
+ AC_LANG_PROGRAM([[
#include <ares.h>
/* set of dummy functions in case c-ares was built with debug */
void curl_dofree() { }
@@ -2259,11 +2259,11 @@ AC_HELP_STRING([--disable-ares],[Disable c-ares for name lookups]),
void curl_domalloc() { }
void curl_docalloc() { }
void curl_socket() { }
- ],[
+ ]],[[
ares_channel channel;
ares_cancel(channel); /* added in 1.2.0 */
ares_process_fd(channel, 0, 0); /* added in 1.4.0 */
- ])
+ ]])
],[
AC_MSG_RESULT([yes])
],[