diff options
author | Yang Tse <yangsita@gmail.com> | 2005-12-20 03:23:49 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2005-12-20 03:23:49 +0000 |
commit | fd0d560b47f80a2a710332046b857886d0b37b31 (patch) | |
tree | 3f8579e7ae4c600327a6323d004968686e5da469 /configure.ac | |
parent | cc542269a165dac8adcf33d827e951df7259f516 (diff) | |
download | curl-fd0d560b47f80a2a710332046b857886d0b37b31.tar.gz |
Fix quoting
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 61d813a47..96cb01a94 100644 --- a/configure.ac +++ b/configure.ac @@ -1287,8 +1287,8 @@ AC_HELP_STRING([--enable-thread],[look for thread-safe functions]), if test X"$OPT_THREAD" = Xoff then - AC_DEFINE(DISABLED_THREADSAFE, 1, \ -Set to explicitly specify we don't want to use thread-safe functions) + AC_DEFINE(DISABLED_THREADSAFE, 1, + [Set to explicitly specify we don't want to use thread-safe functions]) else if test "$ipv6" != "yes"; then dnl dig around for gethostbyname_r() @@ -1602,7 +1602,7 @@ if test "$ac_cv_func_select" = "no"; then AC_DEFINE_UNQUOTED(HAVE_SELECT, 1, [Define to 1 if you have the select function.]) ],[ - AC_MSG_ERROR(You can't compile without a select) + AC_MSG_ERROR([You can't compile without a select]) ]) fi |