diff options
author | Ryan Bloom <rbb@apache.org> | 2000-12-21 02:27:46 +0100 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2000-12-21 02:27:46 +0100 |
commit | 61379efc9aee77db2852fb598c253468d8a8835a (patch) | |
tree | e1cde885cb1fca38857f57028d566deab8dfb00c /configure.in | |
parent | Correction, commited the vc5. Need vc6 in the tree. Humble appologies. (diff) | |
download | apache2-61379efc9aee77db2852fb598c253468d8a8835a.tar.xz apache2-61379efc9aee77db2852fb598c253468d8a8835a.zip |
Actually link apr-util's .a file, instead of relying on libtool. We may
want to change this later, but right now, we want a single binary that
has every function it requires.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87476 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 896868a69d..4dd5a1d96a 100644 --- a/configure.in +++ b/configure.in @@ -174,7 +174,7 @@ apache_need_expat=yes dnl AP_LIB_DIRS specifies the additional libs from srclib/ that we need dnl AP_LIBS specifies the actual libraries. note we have some required libs. -AP_LIBS="srclib/pcre/libpcre.la srclib/apr-util/libaprutil.la" +AP_LIBS="srclib/pcre/libpcre.la srclib/apr-util/.libs/libaprutil.a" if test "$apache_need_expat" = "yes"; then AP_LIB_DIRS="$AP_LIB_DIRS expat-lite" |