diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2013-05-09 05:12:31 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2013-05-09 05:12:31 (GMT) |
commit | 59318f20415546b07b57bc6310c72840191ddf49 (patch) | |
tree | 907379ec3a53c37cd65610494726ef6395d137e2 /config | |
parent | b0bab950af6c85f5efc02c8575a55000a973e0e6 (diff) | |
download | hdf5-59318f20415546b07b57bc6310c72840191ddf49.zip hdf5-59318f20415546b07b57bc6310c72840191ddf49.tar.gz hdf5-59318f20415546b07b57bc6310c72840191ddf49.tar.bz2 |
[svn-r23687] Bug fix: HDFFV-8435
Need to update libtool version number for v1.8.11 since two functions,
H5Pget_dxpl_multi and H5Pset_dxpl_multi were removed. Then v1.8 is now
v1.8.12-xxx and needed an update to.
config/lt_vers.am:
libtool information is changed to 8.0.1 because it is a revision
different from v1.8.10.
configure:
src/Makefile.in:
hl/src/Makefile.in:
hl/c++/src/Makefile.in:
hl/fortran/src/Makefile.in:
c++/src/Makefile.in:
fortran/src/Makefile.in:
README.txt:
autogenerated by bin/reconfiure.
Tested: h5committest, then visual inspect that the libhdf5.so.x.y.z is
changed accordingly.
Built in duck by hand and see it changes to libhdf5.8.dylib too.
Diffstat (limited to 'config')
-rw-r--r-- | config/lt_vers.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/lt_vers.am b/config/lt_vers.am index 4b5c1cd..d58e661 100644 --- a/config/lt_vers.am +++ b/config/lt_vers.am @@ -16,8 +16,8 @@ ## # Add libtool shared library version numbers to the HDF5 library # See libtool versioning documentation online. -LT_VERS_INTERFACE = 7 -LT_VERS_REVISION = 6 +LT_VERS_INTERFACE = 8 +LT_VERS_REVISION = 1 LT_VERS_AGE = 0 ## If the API changes *at all*, increment LT_VERS_INTERFACE and |