bba3dab699
*) mod_cache: Add CacheIgnoreHeaders directive. *) mod_ldap: Added the directive LDAPConnectionTimeout to configure the ldap socket connection timeout value. *) Correctly export all mod_dav public functions. *) Add a build script to create a solaris package. *) worker MPM: Fix a problem which could cause httpd processes to remain active after shutdown. *) Unix MPMs: Shut down the server more quickly when child processes are slow to exit. *) Remove formatting characters from ap_log_error() calls. These were escaped as fallout from CAN-2003-0020. *) mod_ssl: If SSLUsername is used, set r->user earlier. *) htdigest: Fix permissions of created files. *) core_input_filter: Move buckets to a persistent brigade instead of creating a new brigade. This stop a memory leak when proxying a Streaming Media Server. *) mod_win32: Ignore both PATH_INFO as well as PATH_TRANSLATED to avoid hiccups from additional path information passed in non-utf-8 format.
20 lines
578 B
Text
20 lines
578 B
Text
$NetBSD: patch-ai,v 1.7 2005/04/25 09:13:14 adam Exp $
|
|
|
|
--- support/apxs.in.orig 2005-02-04 20:21:18.000000000 +0000
|
|
+++ support/apxs.in
|
|
@@ -338,9 +338,12 @@ if (! -x "$apu_bindir/apu-config") {
|
|
exit(1);
|
|
}
|
|
|
|
-my $libtool = `$apr_bindir/apr-config --installbuilddir`;
|
|
-chomp($libtool);
|
|
-$libtool = "$libtool/libtool";
|
|
+my $libtool = $ENV{'APR_LIBTOOL'};
|
|
+unless ($libtool) {
|
|
+ $libtool = `$apr_bindir/apr-config --installbuilddir`;
|
|
+ chomp($libtool);
|
|
+ $libtool = "$libtool/libtool";
|
|
+}
|
|
|
|
my $apr_includedir = `$apr_bindir/apr-config --includes`;
|
|
chomp($apr_includedir);
|