diff options
author | Neil Jerram <neil@ossau.uklinux.net> | 2002-02-21 19:35:39 +0000 |
---|---|---|
committer | Neil Jerram <neil@ossau.uklinux.net> | 2002-02-21 19:35:39 +0000 |
commit | 3d77146f52e28c143dcd2010229b09b690357452 (patch) | |
tree | a283d5853cfd6661d26ce43647b18ceb626ec2b5 | |
parent | c709de7f982ee19843e162f1778705a002c513c4 (diff) | |
download | guile-3d77146f52e28c143dcd2010229b09b690357452.tar.gz |
* Quote multiword string using [ ].
-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 |