summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorGreg Stein <gstein@apache.org>2000-11-07 04:10:59 +0000
committerGreg Stein <gstein@apache.org>2000-11-07 04:10:59 +0000
commit5350f731984ba0de19b7805513835e4e5b70fada (patch)
tree0573943edb81f702ffa67dec29c4ca972c0fd6ac /support
parentd6cf33982408492af23d648ca69ac1f98857e915 (diff)
downloadhttpd-5350f731984ba0de19b7805513835e4e5b70fada.tar.gz
The LoadModule line should specify a .so file, not a .la file
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86853 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support')
-rw-r--r--support/apxs.in1
1 files changed, 1 insertions, 0 deletions
diff --git a/support/apxs.in b/support/apxs.in
index dc0a752816..11f105ed5a 100644
--- a/support/apxs.in
+++ b/support/apxs.in
@@ -451,6 +451,7 @@ if ($opt_i or $opt_e) {
my $dir = $CFG_LIBEXECDIR;
$dir =~ s|^$CFG_PREFIX/?||;
$dir =~ s|(.)$|$1/|;
+ $t =~ s|\.la$|.so|;
push(@lmd, sprintf("LoadModule %-18s %s", "${name}_module", "$dir$t"));
push(@amd, sprintf("AddModule %s", $filename));
}