From: David Reid Date: Wed, 9 May 2001 13:13:06 +0000 (+0000) Subject: Pass in the full path for the AP_LIBS so we can always find them when not X-Git-Tag: 2.0.18~57 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e95de04489bfd9b151b6631a74869d352f2ddf98;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/configure.in b/configure.in index ca39b877684..542d2cfa021 100644 --- a/configure.in +++ b/configure.in @@ -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)