From: Varsha Rao Date: Thu, 25 Jan 2018 15:18:53 +0000 (+0530) Subject: configure: Remove macro AC_CHECK_FUNCS X-Git-Tag: v0.8.2~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0d75fa3faf95db142a1bf90fc3f60f17624e44dd;p=thirdparty%2Fnftables.git configure: Remove macro AC_CHECK_FUNCS Functions memmove, strchr, strerror and strdup are defined in string.h header file. Also, strtoull is defined in stdlib.h header file. These header files are checked by AC_CHECK_HEADERS macro. AC_CHECK_FUNCS macro is not required, so remove it. Signed-off-by: Varsha Rao Signed-off-by: Pablo Neira Ayuso --- diff --git a/configure.ac b/configure.ac index 71d30d88..48af28c8 100644 --- a/configure.ac +++ b/configure.ac @@ -128,9 +128,6 @@ AC_CHECK_HEADERS([arpa/inet.h fcntl.h inttypes.h limits.h malloc.h \ stddef.h stdint.h stdlib.h string.h unistd.h], , AC_MSG_ERROR([Header file not found])) -# Checks for library functions. -AC_CHECK_FUNCS([memmove memset strchr strdup strerror strtoull]) - AC_CONFIG_FILES([ \ Makefile \ src/Makefile \