diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-07-30 20:06:56 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-07-30 20:06:56 (GMT) |
commit | b09e4485f4591acf36d609b04ca4bfb4993a2314 (patch) | |
tree | f85ca69f57979776471bea3a46702ae58416607f /config | |
parent | 014ec80a8f6adb8956db3e172725820fe4298d04 (diff) | |
download | hdf5-b09e4485f4591acf36d609b04ca4bfb4993a2314.zip hdf5-b09e4485f4591acf36d609b04ca4bfb4993a2314.tar.gz hdf5-b09e4485f4591acf36d609b04ca4bfb4993a2314.tar.bz2 |
[svn-r7277] Purpose:
Bug Fix
Description:
C++ on Irix 6.5 needs some special libraries (libCio or some such
thing). These were defined using the DEFAULT_LIBS macro. However,
they weren't being placed into the Makefiles since it wasn't
AC_SUBST'ed in configure.in and wasn't declared in commence.in.
Solution:
Added to configure.in and also added and commence.in
Platforms tested:
Modi4 (C++, small change and only Irix specific)
Misc. update:
Diffstat (limited to 'config')
-rw-r--r-- | config/commence.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config/commence.in b/config/commence.in index bb8392d..1eddd33 100644 --- a/config/commence.in +++ b/config/commence.in @@ -53,6 +53,11 @@ includedir=@includedir@ docdir=@exec_prefix@/doc PUB_LIB=$(LIB) +## Obtain default library; the current version of libtool does not fully +## support C++ yet, and it does not know which default library to find. +## With libtool 1.5, this support can be removed. - BMR - Jan, 2002 +DEFAULT_LIBS=@DEFAULT_LIBS@ + ## Shared libraries LT_STATIC_EXEC=@LT_STATIC_EXEC@ DYNAMIC_DIRS=@DYNAMIC_DIRS@ |