From e95de04489bfd9b151b6631a74869d352f2ddf98 Mon Sep 17 00:00:00 2001 From: David Reid Date: Wed, 9 May 2001 13:13:06 +0000 Subject: [PATCH] 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 --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index ca39b87768..542d2cfa02 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) -- 2.40.0