diff options
author | Greg Stein <gstein@apache.org> | 2000-11-29 11:25:05 +0100 |
---|---|---|
committer | Greg Stein <gstein@apache.org> | 2000-11-29 11:25:05 +0100 |
commit | 7067db953c40dc88d3c9ddd6e2717790c9b52542 (patch) | |
tree | f08899bee0379095e505190e048f2a2f44b3794f /configure.in | |
parent | Bring mod_ext_filter.html up to the new format. (diff) | |
download | apache2-7067db953c40dc88d3c9ddd6e2717790c9b52542.tar.xz apache2-7067db953c40dc88d3c9ddd6e2717790c9b52542.zip |
reorder the libs for proper inter-lib dependencies
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87124 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | configure.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 5573f5cbe6..acc36fb88d 100644 --- a/configure.in +++ b/configure.in @@ -175,7 +175,7 @@ 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 some required libs. -AP_LIBS="lib/apr/\$(LIBPRE)apr.a lib/pcre/libpcre.la lib/aputil/libaputil.la" +AP_LIBS="lib/pcre/libpcre.la lib/aputil/libaputil.la" INCLUDES="$INCLUDES -I\$(top_srcdir)/lib/aputil" if test "$apache_need_sdbm" = "yes"; then @@ -188,6 +188,9 @@ if test "$apache_need_expat" = "yes"; then AP_LIBS="$AP_LIBS lib/expat-lite/libexpat.la" INCLUDES="$INCLUDES -I\$(top_srcdir)/lib/expat-lite" fi + +dnl APR should go after the other libs, so the right symbols can be picked up +AP_LIBS="$AP_LIBS lib/apr/\$(LIBPRE)apr.a" APACHE_SUBST(AP_LIB_DIRS) APACHE_SUBST(AP_LIBS) |