# HG changeset patch # User Jim Meyering # Date 959154415 0 # Node ID bbb1a19dd886509edfdf1764f924c0cb38b86458 # Parent 1f38587f5f09a6d02ed7b1ea20dc2736923d6fd0 (jm_CHECK_DECLS): Use []-quoted list in AC_CHECK_DECLS, now that autoconf requires that. diff --git a/m4/check-decl.m4 b/m4/check-decl.m4 --- 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 @@ #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.