diff options
author | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2016-09-11 11:36:27 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@gnutls.org> | 2016-09-11 11:36:27 +0200 |
commit | b88831b2e128f30c5361e6fbe08f7875b488d366 (patch) | |
tree | a0262a5ad4a707ab2e58d6144daa06716bdac751 /configure.ac | |
parent | 562a21d7ad398b1d640ac01755784b5ef1fe4c36 (diff) | |
download | gnutls-b88831b2e128f30c5361e6fbe08f7875b488d366.tar.gz |
configure.ac: quote parameters when needed
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 a54ba982fe..2e79ed9103 100644 --- a/configure.ac +++ b/configure.ac @@ -259,7 +259,7 @@ if test "$ac_cv_func_vasprintf" != "yes";then va_list b; va_copy(b,a); va_end(b);])], - [AC_DEFINE(HAVE_VA_COPY, 1, [Have va_copy()]) + [AC_DEFINE([HAVE_VA_COPY], 1, [Have va_copy()]) AC_MSG_RESULT(va_copy)], [AC_LINK_IFELSE([AC_LANG_PROGRAM([ #include <stdarg.h> @@ -267,7 +267,7 @@ if test "$ac_cv_func_vasprintf" != "yes";then va_list b; __va_copy(b,a); va_end(b);])], - [AC_DEFINE(HAVE___VA_COPY, 1, [Have __va_copy()]) + [AC_DEFINE([HAVE___VA_COPY], 1, [Have __va_copy()]) AC_MSG_RESULT(__va_copy)], [AC_MSG_RESULT(no) AC_MSG_ERROR([Your system lacks vasprintf() and va_copy()])]) @@ -628,7 +628,7 @@ AC_ARG_WITH(trousers-lib, AS_HELP_STRING([--with-trousers-lib=LIB], [set the location of the trousers library]), ac_trousers_lib=$withval, ac_trousers_lib=$default_trousers_lib) -AC_DEFINE_UNQUOTED(TROUSERS_LIB, ["$ac_trousers_lib"], [the location of the trousers library]) +AC_DEFINE_UNQUOTED([TROUSERS_LIB], ["$ac_trousers_lib"], [the location of the trousers library]) AC_SUBST(TROUSERS_LIB) included_libopts=no |