Commit 77db3d2a authored by David Reid's avatar David Reid
Browse files

Pass in the full path for the AP_LIBS so we can always find them when not

installed.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89060 13f79535-47bb-0310-9956-ffa450edef68
parent 81d197e0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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)