From 2714bb67ca576bc579d788ffd54f0281ba308024 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Sun, 30 Jul 2000 23:06:57 +0000 Subject: [PATCH] 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 --- build/rules.mk | 4 ++-- 1 file 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 -- 2.40.0