AC_CHECK_DECLS requires commas between declaration. The missing comma
leads to HAVE_DECL_GETLINE_GETTIMEOFDAY which is non-sensical.
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
# The following checks will replace missing functions from libcompat
AC_REPLACE_FUNCS([alarm clock_gettime getline gettimeofday localtime_r strdup strsignal])
-AC_CHECK_DECLS([alarm, clock_gettime, getline gettimeofday, localtime_r, strdup, strsignal])
+AC_CHECK_DECLS([alarm, clock_gettime, getline, gettimeofday, localtime_r, strdup, strsignal])
# The following checks are to only detect if the functions exist, but
# not replace them