summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorVarsha Rao <rvarsha016@gmail.com>2018-01-25 20:48:53 +0530
committerPablo Neira Ayuso <pablo@netfilter.org>2018-01-25 20:36:21 +0100
commit0d75fa3faf95db142a1bf90fc3f60f17624e44dd (patch)
treed82901079abd55124a8e94b325c47acadb942ad5 /configure.ac
parentd580676dd0316f3cd88cb762a46433e24d857848 (diff)
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 <rvarsha016@gmail.com> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac3
1 files changed, 0 insertions, 3 deletions
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 \