From: Greg Stein Date: Tue, 7 Nov 2000 04:10:59 +0000 (+0000) Subject: The LoadModule line should specify a .so file, not a .la file X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c98bce340515053530670c5663d20f65726eb197;p=apache 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 --- 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)); }