Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 95397 invoked by uid 500); 9 May 2001 13:13:30 -0000 Mailing-List: contact apache-cvs-help@apache.org; run by ezmlm Precedence: bulk Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list apache-cvs@apache.org Received: (qmail 95071 invoked by uid 500); 9 May 2001 13:13:19 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 9 May 2001 13:13:14 -0000 Message-ID: <20010509131314.95045.qmail@apache.org> From: dreid@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0 configure.in dreid 01/05/09 06:13:12 Modified: . configure.in Log: Pass in the full path for the AP_LIBS so we can always find them when not installed. Revision Changes Path 1.146 +2 -2 httpd-2.0/configure.in Index: configure.in =================================================================== RCS file: /home/cvs/httpd-2.0/configure.in,v retrieving revision 1.145 retrieving revision 1.146 diff -u -r1.145 -r1.146 --- configure.in 2001/04/29 05:24:08 1.145 +++ configure.in 2001/05/09 13:13:06 1.146 @@ -277,10 +277,10 @@ 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)