From f9ebc68dfd3f8232953e668b0c7ae939377005b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pali=20Roh=C3=A1r?= Date: Fri, 21 Dec 2018 19:51:53 +0100 Subject: [PATCH] configure: Remove check for include file string.h It is not needed as there is already check for C99. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 935422b6..4e0f0593 100644 --- a/configure.ac +++ b/configure.ac @@ -19,7 +19,7 @@ AC_CHECK_LIB(readline, readline, [ ]) dnl Checks for header files. AC_HEADER_STDC -AC_CHECK_HEADERS(fcntl.h sys/time.h unistd.h getopt.h string.h readline/readline.h) +AC_CHECK_HEADERS(fcntl.h sys/time.h unistd.h getopt.h readline/readline.h) dnl Checks for typedefs, structures, and compiler characteristics. AC_C_INLINE