summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2018-02-08 21:50:50 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2018-02-08 21:50:50 (GMT)
commit953f1e432fabec937665acec5a5ea73754f246b4 (patch)
tree13be41052fc3a7f2ead6c9cd06effb11d7e20912 /config
parent77aba5e8802e5fc10522e2cca8c2879d9bb1338e (diff)
downloadhdf5-953f1e432fabec937665acec5a5ea73754f246b4.zip
hdf5-953f1e432fabec937665acec5a5ea73754f246b4.tar.gz
hdf5-953f1e432fabec937665acec5a5ea73754f246b4.tar.bz2
HDFFV-10403 fix soname
Diffstat (limited to 'config')
-rw-r--r--config/cmake/HDF5Macros.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/config/cmake/HDF5Macros.cmake b/config/cmake/HDF5Macros.cmake
index f08349e..c3dea9a 100644
--- a/config/cmake/HDF5Macros.cmake
+++ b/config/cmake/HDF5Macros.cmake
@@ -17,12 +17,12 @@ macro (H5_SET_LIB_OPTIONS libtarget libname libtype)
if (ARGN)
set (PACKAGE_SOVERSION ${ARGN})
else ()
- set (PACKAGE_SOVERSION ${HDF5_PACKAGE_SOVERSION})
+ set (PACKAGE_SOVERSION ${H5_SOVERS_MAJOR})
endif ()
if (WIN32)
set (LIBHDF_VERSION ${HDF5_PACKAGE_VERSION_MAJOR})
else ()
- set (LIBHDF_VERSION ${HDF5_PACKAGE_VERSION})
+ set (LIBHDF_VERSION ${HDF5_PACKAGE_SOVERSION})
endif ()
set_target_properties (${libtarget} PROPERTIES VERSION ${LIBHDF_VERSION})
if (WIN32)