From a493aa30231ca9aa70a3b4bfcdf6a96ae3fbe14c Mon Sep 17 00:00:00 2001 From: Brian Gaeke Date: Wed, 22 Oct 2003 17:52:56 +0000 Subject: [PATCH] Do not check for strings.h. This is an old, old, old pre-C89 header that absolutely nothing should be using (and it looks like nothing IS using it). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9381 91177308-0d34-0410-b5e6-96231b3b80d8 --- autoconf/configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoconf/configure.ac b/autoconf/configure.ac index 1aa99af565a..6912ce14262 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -430,7 +430,7 @@ dnl Check for ANSI C/POSIX header files AC_CHECK_HEADERS(assert.h fcntl.h limits.h sys/time.h unistd.h errno.h signal.h math.h) dnl Check for system specific header files -AC_CHECK_HEADERS(malloc.h strings.h sys/mman.h sys/resource.h) +AC_CHECK_HEADERS(malloc.h sys/mman.h sys/resource.h) dnl Check for header files associated with dlopen and friends AC_CHECK_HEADERS(dlfcn.h link.h)