diff options
author | Ludovic Courtès <ludo@gnu.org> | 2009-11-24 23:34:37 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2009-11-24 23:38:26 +0100 |
commit | feef98f203a7e504557cb5753f06abea96a63ff7 (patch) | |
tree | ddbd2357ad4e9b9ddb6ddc99ea76aaafd2145c21 /acinclude.m4 | |
parent | 48300bace86a4a35a0a6a6e582f651193dbc5f82 (diff) |
Properly quote the first argument to `AC_DEFINE{,_UNQUOTED}'.
* acinclude.m4, configure.ac, examples/compat/acinclude.m4: Properly
quote the first argument for `AC_DEFINE' and `AC_DEFINE_UNQUOTED'.
* .x-sc_m4_quote_check: New file.
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index 91d740d3d..fdf20d4c7 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -57,7 +57,7 @@ AC_DEFUN([GUILE_HEADER_LIBC_WITH_UNISTD], ] ) if test "$guile_cv_header_libc_with_unistd" = yes; then - AC_DEFINE(LIBC_H_WITH_UNISTD_H, 1, + AC_DEFINE([LIBC_H_WITH_UNISTD_H], 1, [Define this if we should include <libc.h> when we've already included <unistd.h>. On some systems, they conflict, and libc.h should be omitted. See GUILE_HEADER_LIBC_WITH_UNISTD in @@ -267,7 +267,7 @@ if test "x$acx_pthread_ok" = xyes; then done AC_MSG_RESULT($attr_name) if test "$attr_name" != PTHREAD_CREATE_JOINABLE; then - AC_DEFINE_UNQUOTED(PTHREAD_CREATE_JOINABLE, $attr_name, + AC_DEFINE_UNQUOTED([PTHREAD_CREATE_JOINABLE], $attr_name, [Define to necessary symbol if this constant uses a non-standard name on your system.]) fi @@ -302,7 +302,7 @@ AC_SUBST(PTHREAD_CC) # Finally, execute ACTION-IF-FOUND/ACTION-IF-NOT-FOUND: if test x"$acx_pthread_ok" = xyes; then - ifelse([$1],,AC_DEFINE(HAVE_PTHREAD,1,[Define if you have POSIX threads libraries and header files.]),[$1]) + ifelse([$1],,AC_DEFINE([HAVE_PTHREAD],1,[Define if you have POSIX threads libraries and header files.]),[$1]) : else acx_pthread_ok=no |