diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2020-07-02 16:29:12 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2020-07-02 16:29:12 (GMT) |
commit | fc69de0e8ae30e80c1c3c542b156226a75444525 (patch) | |
tree | b8baf020c92f6710f6f43a287e53965c301a23fc /configure.ac | |
parent | d05b58b5d4806d694f16d0fc698c5e1c057a411b (diff) | |
download | hdf5-fc69de0e8ae30e80c1c3c542b156226a75444525.zip hdf5-fc69de0e8ae30e80c1c3c542b156226a75444525.tar.gz hdf5-fc69de0e8ae30e80c1c3c542b156226a75444525.tar.bz2 |
Lib files needed are now copied to a subdirectory in the java/test
directory, and on Macs the loader path for libhdf5.xxxs.so is changed
in the temporary copy of libhdf5_java.dylib.
Fix for HDFFV-11063
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 72223bb..88157c3 100644 --- a/configure.ac +++ b/configure.ac @@ -1150,10 +1150,13 @@ AC_CHECK_HEADERS([stdbool.h]) AC_CHECK_HEADERS([netdb.h netinet/in.h arpa/inet.h]) ## Darwin +AC_SUBST([H5_IS_DARWIN]) +H5_IS_DARWIN="no case $host_os in darwin*) AC_DEFINE([HAVE_DARWIN], [1], [Define if Darwin or Mac OS X]) - ;; + H5_IS_DARWIN="yes" + ;; esac ## Windows |