summaryrefslogtreecommitdiffstats
path: root/c++/config
diff options
context:
space:
mode:
authorBill Wendling <wendling@ncsa.uiuc.edu>2000-11-30 20:00:19 (GMT)
committerBill Wendling <wendling@ncsa.uiuc.edu>2000-11-30 20:00:19 (GMT)
commit0d62839e12c50d8d29039f8a6ec6007ffac13ff9 (patch)
tree42a691cd189bb69a9be7e4b74095ab34cb7ae453 /c++/config
parent451ab02f4f0ae1bd842fe4915de4265fb79a38a6 (diff)
downloadhdf5-0d62839e12c50d8d29039f8a6ec6007ffac13ff9.zip
hdf5-0d62839e12c50d8d29039f8a6ec6007ffac13ff9.tar.gz
hdf5-0d62839e12c50d8d29039f8a6ec6007ffac13ff9.tar.bz2
[svn-r3039] Purpose:
Oops. Description: Forgot to make the libraries static since we're not certain that they can be shared...
Diffstat (limited to 'c++/config')
-rw-r--r--c++/config/commence.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/config/commence.in b/c++/config/commence.in
index dcd62a5..5d0bfd2 100644
--- a/c++/config/commence.in
+++ b/c++/config/commence.in
@@ -47,7 +47,7 @@ LT_STATIC_EXEC=@LT_STATIC_EXEC@
DYNAMIC_DIRS=@DYNAMIC_DIRS@
LT=$(top_builddir)/libtool
LT_COMPILE=$(LT) --mode=compile $(CXX) -dlopen self
-LT_LINK_LIB=$(LT) --mode=link $(CXX) -rpath $(libdir)
+LT_LINK_LIB=$(LT) --mode=link $(CXX) -static -rpath $(libdir)
LT_LINK_EXE=$(LT) --mode=link $(CXX) $(LT_STATIC_EXEC) -dlopen self -static -rpath $(bindir) $(DYNAMIC_DIRS)
LT_RUN=$(LT) --mode=execute
LT_INSTALL_PROG=$(LT) --mode=install $(INSTALL_PROGRAM)