From 5beabb3b75cdf5c11dfdd1d305113d284ab64e0f Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Wed, 19 Dec 2001 17:02:16 -0500 Subject: [svn-r4745] Purpose: Feature Rollback Description: Shared C++ libraries aren't working on all platforms (read: Arabica). We need to switch to the old method until we can sort this out. Solution: Re-add the "-static" flag to the library creation lines. --- c++/config/commence.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/c++/config/commence.in b/c++/config/commence.in index c7c217e..5f0dc05 100644 --- a/c++/config/commence.in +++ b/c++/config/commence.in @@ -45,8 +45,8 @@ LT_STATIC_EXEC=@LT_STATIC_EXEC@ DYNAMIC_DIRS=@DYNAMIC_DIRS@ LT=$(top_builddir)/libtool LT_COMPILE=$(LT) --mode=compile $(CXX) -LT_LINK_LIB=$(LT) --mode=link $(CXX) -rpath $(libdir) $(DYNAMIC_DIRS) -LT_LINK_EXE=$(LT) --mode=link $(CXX) $(LT_STATIC_EXEC) -dlopen self -rpath $(bindir) $(DYNAMIC_DIRS) +LT_LINK_LIB=$(LT) --mode=link $(CXX) -static -rpath $(libdir) $(DYNAMIC_DIRS) +LT_LINK_EXE=$(LT) --mode=link $(CXX) -static $(LT_STATIC_EXEC) -dlopen self -rpath $(bindir) $(DYNAMIC_DIRS) LT_RUN=$(LT) --mode=execute LT_INSTALL_PROG=$(LT) --mode=install $(INSTALL_PROGRAM) LT_INSTALL_LIB=$(LT) --mode=install $(INSTALL_DATA) -- cgit v0.12