]> granicus.if.org Git - apache/commitdiff
SH_LDFLAGS wasn't getting evaluated properly when it included
authorJeff Trawick <trawick@apache.org>
Sat, 22 Dec 2001 04:17:56 +0000 (04:17 +0000)
committerJeff Trawick <trawick@apache.org>
Sat, 22 Dec 2001 04:17:56 +0000 (04:17 +0000)
makefile variables

but, we stopped needing SH_LDFLAGS in apxs on AIX since we switched
to run-time linking and I never found out for sure that the use of
SH_LDFLAGS actually helped BeOS or OS/390, so I'm yanking out the
reference to SH_LDFLAGS

if/when we need such a thing in apxs, we'll have a new variable so
we can distinguish between special flags needed for Apache core
DSOs (which might have stuff specific to some Apache core DSO that
was discovered during Apache configurat) vs. special flags needed
by any DSO

PR:
Obtained from:
Submitted by:
Reviewed by:

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92575 13f79535-47bb-0310-9956-ffa450edef68

support/apxs.in

index 98a257a81a9227d32cf70edb288d251547504bde..3dfe83e8738a858d04f264ee545b88f9115f3fc2 100644 (file)
@@ -437,9 +437,6 @@ if ($opt_c) {
         $opt .= " -l$opt_l";
     }
 
-    # special DSO settings on a few platforms
-    $opt .= " $config_vars{'SH_LDFLAGS'}";
-
     push(@cmds, "$prefix/build/libtool --silent --mode=link $CFG_CC -o $dso_file -rpath $CFG_LIBEXECDIR -module -avoid-version $opt $lo");
 
     #   execute the commands