changeset 2532:bbb1a19dd886

(jm_CHECK_DECLS): Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that.
author Jim Meyering <jim@meyering.net>
date Wed, 24 May 2000 07:46:55 +0000
parents 1f38587f5f09
children 084bff0c4246
files m4/check-decl.m4
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/m4/check-decl.m4	Mon May 22 22:08:15 2000 +0000
+++ b/m4/check-decl.m4	Wed May 24 07:46:55 2000 +0000
@@ -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 @@
 #endif
 '
 
-  AC_CHECK_DECLS((
+  AC_CHECK_DECLS([
     free,
     getenv,
     geteuid,
@@ -59,7 +59,7 @@
     strstr,
     strtoul,
     strtoull,
-    ttyname), , , $headers)
+    ttyname], , , $headers)
 ])
 
 dnl FIXME: when autoconf has support for it.