From: Jeff Trawick Date: Sat, 22 Dec 2001 04:17:56 +0000 (+0000) Subject: SH_LDFLAGS wasn't getting evaluated properly when it included X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=efd6438c076a88748c06a6eaf51aa998ec6074c9;p=apache SH_LDFLAGS wasn't getting evaluated properly when it included 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 --- diff --git a/support/apxs.in b/support/apxs.in index 98a257a81a..3dfe83e873 100644 --- a/support/apxs.in +++ b/support/apxs.in @@ -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