diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-07-05 20:56:01 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-07-05 20:56:01 (GMT) |
commit | fe27b57849108761b6090e22256d377ab4576adb (patch) | |
tree | 0f5e14d5594ab3a95681538f3d745cd4e6752641 /configure.in | |
parent | b2375a85c1c68cc6a19f92055d8d8ed24b2c5d90 (diff) | |
download | hdf5-fe27b57849108761b6090e22256d377ab4576adb.zip hdf5-fe27b57849108761b6090e22256d377ab4576adb.tar.gz hdf5-fe27b57849108761b6090e22256d377ab4576adb.tar.bz2 |
[svn-r4118]
Purpose:
Bug Fix
Description:
Changed the README file's name to README.txt to coincide with the
file's actual name change. Also removed check for the nsl library
unless we're dealing with a SunOS system as this can conflict with
libraries on other strange platforms.
Platforms tested:
Eirene.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 470f133..cd304ad 100644 --- a/configure.in +++ b/configure.in @@ -404,7 +404,12 @@ dnl ---------------------------------------------------------------------- dnl Check for system libraries. dnl AC_CHECK_LIB(m,ceil) -AC_CHECK_LIB(nsl,xdr_int) dnl ...for Solaris and hdf4 + +if test `uname` = "SunOS"; then + dnl ...for Solaris and hdf4 + AC_CHECK_LIB(nsl, xdr_int) +fi + dnl AC_CHECK_LIB(coug,main) dnl ...for ASCI/Red dnl ---------------------------------------------------------------------- @@ -1450,8 +1455,8 @@ dnl Set some variables for general configuration information to be saved dnl and installed with the libraries. dnl -dnl HDF5 version from the first line of the README file. -H5_VERSION=`cut -d' ' -f3 $srcdir/README |head -1` +dnl HDF5 version from the first line of the README.txt file. +H5_VERSION=`cut -d' ' -f3 $srcdir/README.txt | head -1` AC_SUBST(H5_VERSION) dnl Configuration date |