Return-Path: Delivered-To: apmail-httpd-bugs-archive@httpd.apache.org Received: (qmail 83821 invoked by uid 500); 31 Mar 2003 13:37:12 -0000 Mailing-List: contact bugs-help@httpd.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: "Apache HTTPD Bugs Notification List" Delivered-To: mailing list bugs@httpd.apache.org Received: (qmail 83810 invoked from network); 31 Mar 2003 13:37:12 -0000 Date: 31 Mar 2003 13:39:01 -0000 Message-ID: <20030331133901.24459.qmail@nagoya.betaversion.org> From: bugzilla@apache.org To: bugs@httpd.apache.org Cc: Subject: DO NOT REPLY [Bug 18518] New: - [PATCH] Compilation fails when using preinstalled libapr X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT . ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18518 [PATCH] Compilation fails when using preinstalled libapr Summary: [PATCH] Compilation fails when using preinstalled libapr Product: Apache httpd-2.0 Version: 2.0.44 Platform: All OS/Version: Other Status: NEW Severity: Normal Priority: Other Component: Build AssignedTo: bugs@httpd.apache.org ReportedBy: svd@altlinux.ru modules/aaa/config.m4 has hardcoded include path for APR. This doesn't work when APR is installed in system and included one from tarball is not used. This patch fix it. --- apache2-2.0.44/modules/aaa/config.m4~ 2003-03-25 12:32:35 +0300 +++ apache2-2.0.44/modules/aaa/config.m4 2003-03-25 12:32:18 +0300 @@ -11,7 +11,7 @@ APACHE_MODULE(auth_digest, RFC2617 Digest authentication, , , most, [ ap_old_cppflags=$CPPFLAGS - CPPFLAGS="$CPPFLAGS -I$APR_SOURCE_DIR/include -I$abs_builddir/srclib/apr/include" + CPPFLAGS="$CPPFLAGS $INCLUDES" AC_TRY_COMPILE([#include ], [#if !APR_HAS_RANDOM #error You need APR random support to use auth_digest. --------------------------------------------------------------------- To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org For additional commands, e-mail: bugs-help@httpd.apache.org