Skip to content
Snippets Groups Projects
Commit fd0d560b authored by Yang Tse's avatar Yang Tse
Browse files

Fix quoting

parent cc542269
No related branches found
No related tags found
No related merge requests found
...@@ -281,13 +281,13 @@ AC_DEFUN([CURL_FUNC_GETNAMEINFO_ARGTYPES], [ ...@@ -281,13 +281,13 @@ AC_DEFUN([CURL_FUNC_GETNAMEINFO_ARGTYPES], [
IFS=$gni_prev_IFS IFS=$gni_prev_IFS
shift shift
AC_DEFINE_UNQUOTED(GETNAMEINFO_TYPE_ARG1, $[1], AC_DEFINE_UNQUOTED(GETNAMEINFO_TYPE_ARG1, $[1],
[Define to the type of arg 1 for `getnameinfo'.]) [Define to the type of arg 1 for getnameinfo.])
AC_DEFINE_UNQUOTED(GETNAMEINFO_TYPE_ARG2, $[2], AC_DEFINE_UNQUOTED(GETNAMEINFO_TYPE_ARG2, $[2],
[Define to the type of arg 2 for `getnameinfo'.]) [Define to the type of arg 2 for getnameinfo.])
AC_DEFINE_UNQUOTED(GETNAMEINFO_TYPE_ARG46, $[3], AC_DEFINE_UNQUOTED(GETNAMEINFO_TYPE_ARG46, $[3],
[Define to the type of args 4 and 6 for `getnameinfo'.]) [Define to the type of args 4 and 6 for getnameinfo.])
AC_DEFINE_UNQUOTED(GETNAMEINFO_TYPE_ARG7, $[4], AC_DEFINE_UNQUOTED(GETNAMEINFO_TYPE_ARG7, $[4],
[Define to the type of arg 7 for `getnameinfo'.]) [Define to the type of arg 7 for getnameinfo.])
fi fi
]) ])
......
...@@ -281,13 +281,13 @@ AC_DEFUN([CURL_FUNC_GETNAMEINFO_ARGTYPES], [ ...@@ -281,13 +281,13 @@ AC_DEFUN([CURL_FUNC_GETNAMEINFO_ARGTYPES], [
IFS=$gni_prev_IFS IFS=$gni_prev_IFS
shift shift
AC_DEFINE_UNQUOTED(GETNAMEINFO_TYPE_ARG1, $[1], AC_DEFINE_UNQUOTED(GETNAMEINFO_TYPE_ARG1, $[1],
[Define to the type of arg 1 for `getnameinfo'.]) [Define to the type of arg 1 for getnameinfo.])
AC_DEFINE_UNQUOTED(GETNAMEINFO_TYPE_ARG2, $[2], AC_DEFINE_UNQUOTED(GETNAMEINFO_TYPE_ARG2, $[2],
[Define to the type of arg 2 for `getnameinfo'.]) [Define to the type of arg 2 for getnameinfo.])
AC_DEFINE_UNQUOTED(GETNAMEINFO_TYPE_ARG46, $[3], AC_DEFINE_UNQUOTED(GETNAMEINFO_TYPE_ARG46, $[3],
[Define to the type of args 4 and 6 for `getnameinfo'.]) [Define to the type of args 4 and 6 for getnameinfo.])
AC_DEFINE_UNQUOTED(GETNAMEINFO_TYPE_ARG7, $[4], AC_DEFINE_UNQUOTED(GETNAMEINFO_TYPE_ARG7, $[4],
[Define to the type of arg 7 for `getnameinfo'.]) [Define to the type of arg 7 for getnameinfo.])
fi fi
]) ])
......
...@@ -1287,8 +1287,8 @@ AC_HELP_STRING([--enable-thread],[look for thread-safe functions]), ...@@ -1287,8 +1287,8 @@ AC_HELP_STRING([--enable-thread],[look for thread-safe functions]),
if test X"$OPT_THREAD" = Xoff if test X"$OPT_THREAD" = Xoff
then then
AC_DEFINE(DISABLED_THREADSAFE, 1, \ AC_DEFINE(DISABLED_THREADSAFE, 1,
Set to explicitly specify we don't want to use thread-safe functions) [Set to explicitly specify we don't want to use thread-safe functions])
else else
if test "$ipv6" != "yes"; then if test "$ipv6" != "yes"; then
dnl dig around for gethostbyname_r() dnl dig around for gethostbyname_r()
...@@ -1602,7 +1602,7 @@ if test "$ac_cv_func_select" = "no"; then ...@@ -1602,7 +1602,7 @@ if test "$ac_cv_func_select" = "no"; then
AC_DEFINE_UNQUOTED(HAVE_SELECT, 1, AC_DEFINE_UNQUOTED(HAVE_SELECT, 1,
[Define to 1 if you have the select function.]) [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 fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment