summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-05-24 07:46:55 +0000
committerJim Meyering <jim@meyering.net>2000-05-24 07:46:55 +0000
commit3ed09573d719da9aadfceac17f67c6bb97f1b08c (patch)
treedcb7cf8d9935c53c539870b3c20201d32dca31ec /m4
parent449fa131d6380fb04333d28e663acb24a8fa8acc (diff)
downloadcoreutils-3ed09573d719da9aadfceac17f67c6bb97f1b08c.tar.xz
(jm_CHECK_DECLS): Use []-quoted list in AC_CHECK_DECLS,
now that autoconf requires that.
Diffstat (limited to 'm4')
-rw-r--r--m4/check-decl.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/check-decl.m4 b/m4/check-decl.m4
index e301e44f1..e7035a10e 100644
--- a/m4/check-decl.m4
+++ b/m4/check-decl.m4
@@ -1,4 +1,4 @@
-#serial 11
+#serial 12
dnl This is just a wrapper function to encapsulate this kludge.
dnl Putting it in a separate file like this helps share it between
@@ -43,7 +43,7 @@ AC_DEFUN(jm_CHECK_DECLS,
#endif
'
- AC_CHECK_DECLS((
+ AC_CHECK_DECLS([
free,
getenv,
geteuid,
@@ -59,7 +59,7 @@ AC_DEFUN(jm_CHECK_DECLS,
strstr,
strtoul,
strtoull,
- ttyname), , , $headers)
+ ttyname], , , $headers)
])
dnl FIXME: when autoconf has support for it.