From: Jeff Trawick Date: Wed, 19 Feb 2003 20:39:59 +0000 (+0000) Subject: Unix build: Add support for environment variable X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9e5ef812bcddcddf37cf5c868a48f44f0b3ace4e;p=thirdparty%2Fapache%2Fhttpd.git Unix build: Add support for environment variable EXTRA_LDFLAGS_SHLIB, which allows the user to add to the hard-coded ld flags specified for DSOs. Compare with the existing LDFLAGS_SHLIB environment variable, which allows the user to completely replace the hard-coded ld flags specified for DSOs. Reviewed by: Jim Jagielski, Justin Erenkrantz git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@98737 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/CHANGES b/src/CHANGES index 6dd458bf517..706783308b9 100644 --- a/src/CHANGES +++ b/src/CHANGES @@ -1,5 +1,11 @@ Changes with Apache 1.3.28 + *) Unix build: Add support for environment variable + EXTRA_LDFLAGS_SHLIB, which allows the user to add to the hard-coded + ld flags specified for DSOs. Compare with the existing LDFLAGS_SHLIB + environment variable, which allows the user to completely replace the + hard-coded ld flags specified for DSOs. [Jeff Trawick] + *) mod_auth_digest no longer tries to guess AuthDigestDomain, if it's not specified. Now it assumes "/" as already documented. PR 16937. [André Malo] diff --git a/src/Configure b/src/Configure index f05ab7e1588..c166330065f 100755 --- a/src/Configure +++ b/src/Configure @@ -1999,7 +1999,8 @@ if [ "x$using_shlib" = "x1" ] ; then echo "LD_SHLIB=$LD_SHLIB" >> Makefile.config fi if [ "x$TLDFLAGS_SHLIB" = "x" ]; then - echo "LDFLAGS_SHLIB=$LDFLAGS_SHLIB" >> Makefile.config + echo "EXTRA_LDFLAGS_SHLIB=$EXTRA_LDFLAGS_SHLIB" >> Makefile.config + echo "LDFLAGS_SHLIB=$LDFLAGS_SHLIB $EXTRA_LDFLAGS_SHLIB" >> Makefile.config fi if [ "x$TLDFLAGS_SHLIB_EXPORT" = "x" ]; then echo "LDFLAGS_SHLIB_EXPORT=$LDFLAGS_SHLIB_EXPORT" >> Makefile.config