From: Greg Stein Date: Sun, 26 Nov 2000 13:43:32 +0000 (+0000) Subject: Start the oft-discussed, but oft-punted lib/aputil library. Drop in a first X-Git-Tag: moving_to_httpd_module~84 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5ab185a99767d89d56446ff518a5c82292867ae9;p=apache Start the oft-discussed, but oft-punted lib/aputil library. Drop in a first cut at an "any" DBM set of cover functions. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87081 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/configure.in b/configure.in index abdaf3062b..4dec8d8c1d 100644 --- a/configure.in +++ b/configure.in @@ -167,8 +167,8 @@ dnl ### util_xml is always included, so we always need Expat (for now) apache_need_expat=yes dnl AP_LIB_DIRS specifies the additional libs from src/lib/ that we need -dnl AP_LIBS specifies the actual libraries. note we have two required libs. -AP_LIBS="lib/apr/\$(LIBPRE)apr.a lib/pcre/libpcre.la" +dnl AP_LIBS specifies the actual libraries. note we have some required libs. +AP_LIBS="lib/apr/\$(LIBPRE)apr.a lib/pcre/libpcre.la lib/aputil/libaputil.la" if test "$apache_need_sdbm" = "yes"; then AP_LIB_DIRS="$AP_LIB_DIRS sdbm" AP_LIBS="$AP_LIBS lib/sdbm/libsdbm.la" @@ -199,7 +199,8 @@ else fi APACHE_FAST_OUTPUT(Makefile ap/Makefile lib/Makefile main/Makefile) -APACHE_FAST_OUTPUT(modules/Makefile os/Makefile support/Makefile lib/pcre/Makefile) +APACHE_FAST_OUTPUT(modules/Makefile os/Makefile support/Makefile) +APACHE_FAST_OUTPUT(lib/pcre/Makefile lib/aputil/Makefile) for i in $AP_LIB_DIRS; do APACHE_FAST_OUTPUT(lib/$i/Makefile) done