From: Jeff Trawick Date: Sun, 30 Jul 2000 23:06:57 +0000 (+0000) Subject: Get dsos working again by including $(LTFLAGS) on the command-line for X-Git-Tag: APACHE_2_0_ALPHA_5~31 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2714bb67ca576bc579d788ffd54f0281ba308024;p=apache 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 --- 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