From: Jeff Trawick Date: Wed, 26 Apr 2000 14:50:33 +0000 (+0000) Subject: Define HAVE_STRING_H, HAVE_STDLIB_H, HAVE_CTYPE_H, HAVE_LIMITS_H X-Git-Tag: APACHE_2_0_ALPHA_3~36 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c5fa06cca7cc86f34d6939abe514b85215211cc9;p=apache Define HAVE_STRING_H, HAVE_STDLIB_H, HAVE_CTYPE_H, HAVE_LIMITS_H at configure time. Some of the modules use these. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85046 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/configure.in b/configure.in index f707238af7..ed071bb1df 100644 --- a/configure.in +++ b/configure.in @@ -44,8 +44,16 @@ dnl I think these are just used all over the place, so just check for dnl them at the base of the tree. If some are specific to a single dnl directory, they should be moved (Comment #Spoon) +dnl Regarding standard header files: AC_HEADER_STDC doesn't set symbols +dnl HAVE_STRING_H, HAVE_STDLIB_H, etc., so those are checked for +dnl explicitly so that the normal HAVE_xxx_H symbol is defined. + AC_HEADER_STDC AC_CHECK_HEADERS( \ +string.h \ +stdlib.h \ +ctype.h \ +limits.h \ unistd.h \ sys/stat.h \ sys/time.h \