diff options
author | Greg Stein <gstein@apache.org> | 2001-02-10 14:04:21 +0000 |
---|---|---|
committer | Greg Stein <gstein@apache.org> | 2001-02-10 14:04:21 +0000 |
commit | 5dc34feb12e4147e47140881ba18964dc27d687f (patch) | |
tree | 5d3b3a81132a120a922c4987782be1c31c78cf72 /server/config.m4 | |
parent | bb282b75f71256a00c110d39842e7bc3b83958a6 (diff) | |
download | httpd-5dc34feb12e4147e47140881ba18964dc27d687f.tar.gz |
*) continued header revamping
*) torch some headers (and some libs) from the autoconf stuff
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88061 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/config.m4')
-rw-r--r-- | server/config.m4 | 24 |
1 files changed, 2 insertions, 22 deletions
diff --git a/server/config.m4 b/server/config.m4 index 479fbeafff..66b6ee3b76 100644 --- a/server/config.m4 +++ b/server/config.m4 @@ -1,7 +1,5 @@ dnl ## Check for libraries -AC_DEFUN(APACHE_DEFINE_HAVE_CRYPT, [ -]) AC_CHECK_LIB(nsl, gethostname, [ AC_ADD_LIBRARY(nsl) ], []) @@ -11,29 +9,13 @@ AC_CHECK_LIB(socket, socket, [ AC_CHECK_LIB(nsl, gethostbyaddr, [ AC_ADD_LIBRARY(nsl) ], []) -AC_CHECK_LIB(crypt, crypt, [ - AC_ADD_LIBRARY(crypt) -], [ - AC_CHECK_LIB(ufc, crypt, [ - AC_ADD_LIBRARY(ufc) - ], []) -]) dnl ## Check for header files -AC_HEADER_STDC -AC_CHECK_HEADERS( -bstring.h \ -crypt.h \ -unistd.h \ -sys/resource.h \ -sys/select.h \ -sys/processor.h \ -) +AC_CHECK_HEADERS(bstring.h unistd.h) dnl ## Check for typedefs, structures, and compiler characteristics. -AC_TYPE_RLIM_T AC_CACHE_CHECK([for tm_gmtoff in struct tm], ac_cv_struct_tm_gmtoff, [AC_TRY_COMPILE([#include <sys/types.h> #include <$ac_cv_struct_tm>], [struct tm tm; tm.tm_gmtoff;], @@ -46,9 +28,7 @@ fi dnl ## Check for library functions -AC_CHECK_FUNCS( -syslog \ -) +AC_CHECK_FUNCS(syslog) dnl Obsolete scoreboard code uses this. AC_CHECK_HEADERS(sys/times.h) |