]> granicus.if.org Git - check/commitdiff
configure.ac: fix typo
authorAnthony G. Basile <blueness@gentoo.org>
Mon, 21 Mar 2016 12:41:25 +0000 (08:41 -0400)
committerAnthony G. Basile <blueness@gentoo.org>
Mon, 21 Mar 2016 12:41:25 +0000 (08:41 -0400)
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>
configure.ac

index 27b5009c8053a8ada895f4234981cfac7ab22051..8e3cfc369a8b70ce83204c0ebfc07990eacdc5d6 100644 (file)
@@ -293,7 +293,7 @@ HW_LIBRT_TIMERS
 
 # 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