diff options
author | Mike McGreevy <mamcgree@hdfgroup.org> | 2008-01-28 21:04:18 (GMT) |
---|---|---|
committer | Mike McGreevy <mamcgree@hdfgroup.org> | 2008-01-28 21:04:18 (GMT) |
commit | 61bd4597316438ae10df633ff735ef37a7126c5d (patch) | |
tree | 443f8725705ab175a7c53bd15d82a4bd94a99683 | |
parent | 7ec36c4a3d533f6ef472cd603b6039f795d2f7e9 (diff) | |
download | hdf5-61bd4597316438ae10df633ff735ef37a7126c5d.zip hdf5-61bd4597316438ae10df633ff735ef37a7126c5d.tar.gz hdf5-61bd4597316438ae10df633ff735ef37a7126c5d.tar.bz2 |
[svn-r14463] Purpose: Updating shared library version number for 1.8.0 release.
Description: config/lt_vers.am was updated as follows due to changes in API
since last version update:
LT_VERS_INTERFACE = 5
LT_VERS_REVISION = 0
LT_VERS_AGE = 0
Tested: kagiso
-rw-r--r-- | config/lt_vers.am | 6 | ||||
-rwxr-xr-x | configure | 2 | ||||
-rw-r--r-- | src/Makefile.in | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/config/lt_vers.am b/config/lt_vers.am index 698c3ed..e47c16e 100644 --- a/config/lt_vers.am +++ b/config/lt_vers.am @@ -16,9 +16,9 @@ ## # Add libtool shared library version numbers to the HDF5 library # See libtool versioning documentation online. -LT_VERS_INTERFACE = 4 -LT_VERS_REVISION = 4 -LT_VERS_AGE = 3 +LT_VERS_INTERFACE = 5 +LT_VERS_REVISION = 0 +LT_VERS_AGE = 0 ## If the API changes *at all*, increment LT_VERS_INTERFACE and ## reset LT_VERS_REVISION to 0. @@ -1,5 +1,5 @@ #! /bin/sh -# From configure.in Id: configure.in 14448 2008-01-21 18:15:43Z epourmal . +# From configure.in Id: configure.in 14460 2008-01-27 17:41:14Z epourmal . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.61 for HDF5 1.8.0-rc3. # diff --git a/src/Makefile.in b/src/Makefile.in index e733039..085bf96 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -382,9 +382,9 @@ CHECK_CLEANFILES = *.chkexe *.chklog *.clog # Add libtool shared library version numbers to the HDF5 library # See libtool versioning documentation online. -LT_VERS_INTERFACE = 4 -LT_VERS_REVISION = 4 -LT_VERS_AGE = 3 +LT_VERS_INTERFACE = 5 +LT_VERS_REVISION = 0 +LT_VERS_AGE = 0 H5detect_CFLAGS = -g # Our main target, the HDF5 library |