Hi,

I will shortly commit a patch which changes the signature of the three
macros above (they are new and were never released).

We no longer rely on parens for the m4 list, rather we rely on the
quotation:

For instance:

-AC_CHECK_DECLS((strlen))
-AC_CHECK_DECLS((malloc, realloc, calloc, free))
+AC_CHECK_DECLS(strdup)
+AC_CHECK_DECLS([strlen])
+AC_CHECK_DECLS([malloc, realloc, calloc, free])

-AC_CHECK_MEMBERS((struct stat.st_rdev, struct stat.st_blksize))
+AC_CHECK_MEMBERS([struct stat.st_rdev, struct stat.st_blksize])

-AC_CHECK_TYPES((ptrdiff_t))
-AC_CHECK_TYPES((unsigned long long, uintmax_t))
+AC_CHECK_TYPES(ptrdiff_t)
+AC_CHECK_TYPES([unsigned long long, uintmax_t])

        Akim

Reply via email to