diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | acinclude.m4 | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2002-02-21 Neil Jerram <neil@ossau.uklinux.net> + + * acinclude.m4 (GUILE_HEADER_LIBC_WITH_UNISTD): Use [] rather than + "" for multiword string. Thanks to Christopher Cramer for + pointing this out. + 2002-02-11 Marius Vollmer <marius.vollmer@uni-dortmund.de> * acconfig.h (GUILE_DEBUG_MALLOC): Refer to scm_gc_malloc, etc, diff --git a/acinclude.m4 b/acinclude.m4 index f0402880a..f0ec6d03c 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -32,7 +32,7 @@ AC_DEFUN([GUILE_HEADER_LIBC_WITH_UNISTD], [ AC_CHECK_HEADERS(libc.h unistd.h) AC_CACHE_CHECK( - "whether libc.h and unistd.h can be included together", + [whether libc.h and unistd.h can be included together], guile_cv_header_libc_with_unistd, [ if test "$ac_cv_header_libc_h" = "no"; then |