diff options
author | Robb Matzke <matzke@llnl.gov> | 1998-03-06 05:34:36 (GMT) |
---|---|---|
committer | Robb Matzke <matzke@llnl.gov> | 1998-03-06 05:34:36 (GMT) |
commit | 9919e1a4280c382d6ecb79e56ebb2b3828b6cccd (patch) | |
tree | 87965e8043fd5e594bd3eac6be19adfd0a1b33a4 /configure.in | |
parent | 44da2314b56b3651221a15b4338d156a6d3b9222 (diff) | |
download | hdf5-9919e1a4280c382d6ecb79e56ebb2b3828b6cccd.zip hdf5-9919e1a4280c382d6ecb79e56ebb2b3828b6cccd.tar.gz hdf5-9919e1a4280c382d6ecb79e56ebb2b3828b6cccd.tar.bz2 |
[svn-r311] Changes since 19980305
----------------------
./configure.in
./configure
./config/commence.in
Added checking for `ar' then `xar' and set the $(AR) variable
in the Makefiles. The check is not performed if $AR is
already defined in the environment (including being set in a
config file). We check for `-lcoug' for ASCI/Red.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 4df9317..26adb8e 100644 --- a/configure.in +++ b/configure.in @@ -72,6 +72,11 @@ AC_PROG_MAKE_SET AC_PROG_INSTALL AC_PROG_RANLIB +if test "X$AR" = "X"; then + AC_CHECK_PROGS(AR,ar xar,:,$PATH) +fi +AC_SUBST(AR) + AC_MSG_CHECKING(for GNU Make) if test "`${MAKE-make} --version -f /dev/null 2>/dev/null |\ sed -n 1p|cut -c1-8`" = "GNU Make"; then @@ -86,7 +91,7 @@ fi dnl ---------------------------------------------------------------------- dnl Check for libraries. (none required yet) dnl - +AC_CHECK_LIB(coug, main) dnl ...for ASCI/Red dnl ---------------------------------------------------------------------- |