build-sys: add what autoscan found bein missing

configure.ac: warning: missing AC_CHECK_FUNCS([atexit]) wanted by: src/dhcpd-pools.c:88
configure.ac: warning: missing AC_CHECK_HEADERS([limits.h]) wanted by: src/dhcpd-pools.c:55
configure.ac: warning: missing AC_FUNC_ERROR_AT_LINE wanted by: src/other.c:213
configure.ac: warning: missing AC_FUNC_STRTOD wanted by: src/other.c:148

Signed-off-by: Sami Kerola <kerolasa@iki.fi>
This commit is contained in:
Sami Kerola 2012-10-09 21:31:43 +01:00
parent b15e63afd2
commit 14d7183c3d

View file

@ -30,6 +30,7 @@ AC_CHECK_HEADERS([\
fcntl.h \
langinfo.h \
libintl.h \
limits.h \
netinet/in.h \
stddef.h \
stdio_ext.h \
@ -62,10 +63,13 @@ AC_TYPE_SIZE_T
AC_TYPE_UINT32_T
# Checks for library functions.
AC_FUNC_ERROR_AT_LINE
AC_FUNC_MALLOC
AC_FUNC_REALLOC
AC_FUNC_STRTOD
AC_CHECK_FUNCS([\
__fpending \
atexit \
error \
inet_ntoa \
memset \