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 /configure.in | |
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 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 1325479..23f685a 100644 --- a/configure.in +++ b/configure.in @@ -47,6 +47,12 @@ AC_OUTPUT_COMMANDS([ AC_CANONICAL_HOST AC_SUBST([CPPFLAGS]) +dnl Different compilers may need default libraries. They are specified in +dnl the config/* files, so we put this statement here so that it'll be +dnl set by the code which follows... +dnl +AC_SUBST(DEFAULT_LIBS) DEFAULT_LIBS="" + dnl ---------------------------------------------------------------------- dnl Set prefix default (install directory) to a directory in the build area. dnl This allows multiple src-dir builds within one host. |