]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Pass in the full path for the AP_LIBS so we can always find them when not
authorDavid Reid <dreid@apache.org>
Wed, 9 May 2001 13:13:06 +0000 (13:13 +0000)
committerDavid Reid <dreid@apache.org>
Wed, 9 May 2001 13:13:06 +0000 (13:13 +0000)
installed.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89060 13f79535-47bb-0310-9956-ffa450edef68

configure.in

index ca39b8776848e4c34ad931b1bb14f8e845d2d3f6..542d2cfa021bd56cfedbfe9e148197317487615a 100644 (file)
@@ -277,10 +277,10 @@ AC_ARG_WITH(suexec-umask,
 
 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"
+AP_LIBS="$abs_srcdir/srclib/pcre/libpcre.la $abs_srcdir/srclib/apr-util/libaprutil.la $AP_LIBS"
 
 dnl APR should go after the other libs, so the right symbols can be picked up
-AP_LIBS="$AP_LIBS srclib/apr/libapr.la"
+AP_LIBS="$AP_LIBS $abs_srcdir/srclib/apr/libapr.la"
 APACHE_SUBST(AP_LIB_DIRS)
 APACHE_SUBST(AP_LIBS)