diff options
author | Jeff Trawick <trawick@apache.org> | 2000-07-31 01:06:57 +0200 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2000-07-31 01:06:57 +0200 |
commit | 2714bb67ca576bc579d788ffd54f0281ba308024 (patch) | |
tree | e9cee60adb2db8fcc26d2b8e0cef56f4b6366617 /build/rules.mk | |
parent | Finish the http_config.h documentation. :-) (diff) | |
download | apache2-2714bb67ca576bc579d788ffd54f0281ba308024.tar.xz apache2-2714bb67ca576bc579d788ffd54f0281ba308024.zip |
Get dsos working again by including $(LTFLAGS) on the command-line for
the --mode=link invocations of libtool/shlibtool. The lack of LTFLAGS
resulted in no -export-dynamic, and dsos couldn't resolve symbols in
httpd.
LTFLAGS was lost in the 1.23 revision of rules.mk.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85956 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/rules.mk')
-rw-r--r-- | build/rules.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/rules.mk b/build/rules.mk index 525d45814c..90db7bd032 100644 --- a/build/rules.mk +++ b/build/rules.mk @@ -70,8 +70,8 @@ LT_CXX_COMPILE = $(LIBTOOL) --mode=compile $(CXX_COMPILE) -c $< && touch $@ # Link-related commands -LINK = $(LIBTOOL) --mode=link $(COMPILE) $(LDFLAGS) -o $@ -SH_LINK = $(SH_LIBTOOL) --mode=link $(COMPILE) $(LDFLAGS) -o $@ +LINK = $(LIBTOOL) --mode=link $(COMPILE) $(LTFLAGS) $(LDFLAGS) -o $@ +SH_LINK = $(SH_LIBTOOL) --mode=link $(COMPILE) $(LTFLAGS) $(LDFLAGS) -o $@ # Helper programs |