Commit 21e28742 authored by Greg Stein's avatar Greg Stein
Browse files

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
parent 49291cd5
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -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