From: Anthony G. Basile Date: Mon, 21 Mar 2016 12:41:25 +0000 (-0400) Subject: configure.ac: fix typo X-Git-Tag: 0.11.0~35^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=16d85c8b2b96901f5a27e5e749484b855cd882f5;p=check configure.ac: fix typo 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 --- diff --git a/configure.ac b/configure.ac index 27b5009..8e3cfc3 100644 --- a/configure.ac +++ b/configure.ac @@ -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