summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorLarry Knox <lrknox@hdfgroup.org>2020-07-11 13:07:10 (GMT)
committerLarry Knox <lrknox@hdfgroup.org>2020-07-13 17:23:19 (GMT)
commitd5bbeea82905d95585c3cd897e18b06a50637204 (patch)
treed09f65d11dc50ae778981e729be19d816251ba14 /configure.ac
parentfb6a64c04db4fdb23bc76b3eea2aa9a146304da2 (diff)
downloadhdf5-d5bbeea82905d95585c3cd897e18b06a50637204.zip
hdf5-d5bbeea82905d95585c3cd897e18b06a50637204.tar.gz
hdf5-d5bbeea82905d95585c3cd897e18b06a50637204.tar.bz2
Merge pull request #2686 in HDFFV/hdf5 from ~LRKNOX/hdf5_lrk:develop to develop
* commit '800f93f7c994f88dfa716746153ded4b1e690e3a': Remove path to szip header file from AM_CPPFLAGS when configure check of libsz fails. Fix for HDFFV-10830.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 4a610d5..8ce1cef 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1603,7 +1603,10 @@ case "X-$withval" in
if test "x$HAVE_SZLIB" = "xyes" -a "x$HAVE_SZLIB_H" = "xyes"; then
AC_CHECK_LIB([sz], [SZ_BufftoBuffCompress],,
- [LDFLAGS="$saved_LDFLAGS"; AM_LDFLAGS="$saved_AM_LDFLAGS"; unset HAVE_SZLIB])
+ [CPPFLAGS="$saved_CPPFLAGS"; AM_CPPFLAGS="$saved_AM_CPPFLAGS"; LDFLAGS="$saved_LDFLAGS"; AM_LDFLAGS="$saved_AM_LDFLAGS"; unset HAVE_SZLIB])
+ if test -z "$HAVE_SZLIB"; then
+ AC_MSG_RESULT([Using SZ_BufftoBuffCompress from libsz in $szlib_lib failed. Szip not enabled.])
+ fi
fi
if test -z "$HAVE_SZLIB" -a -n "$HDF5_CONFIG_ABORT"; then