diff options
author | Larry Knox <lrknox@hdfgroup.org> | 2016-03-09 18:55:31 (GMT) |
---|---|---|
committer | Larry Knox <lrknox@hdfgroup.org> | 2016-03-09 18:55:31 (GMT) |
commit | f5234cd194837790662e0b634fd6236137177674 (patch) | |
tree | 8e7408ae73b2db8ae48eb4ee697a60f8187a6659 /config | |
parent | 23e97565cfb9adf329315635fb58553b14670b47 (diff) | |
download | hdf5-f5234cd194837790662e0b634fd6236137177674.zip hdf5-f5234cd194837790662e0b634fd6236137177674.tar.gz hdf5-f5234cd194837790662e0b634fd6236137177674.tar.bz2 |
[svn-r29379] Add individual LT_VERS_* variables for wrapper libraries: c++, fortran, java, hl, hl/c++, hl/fortran to so that the shared object version numbers can be incremented independently.
Disabled auto-increment of shared object version numbers by h5vers.
Files modified:
config/lt_vers.am
java/src/jni/Makefile.am
hl/src/Makefile.am
hl/c++/src/Makefile.am
hl/fortran/src/Makefile.am
c++/src/Makefile.am
bin/h5vers
fortran/src/Makefile.am
Diffstat (limited to 'config')
-rw-r--r-- | config/lt_vers.am | 33 |
1 files changed, 29 insertions, 4 deletions
diff --git a/config/lt_vers.am b/config/lt_vers.am index a3b7634..24d24d2 100644 --- a/config/lt_vers.am +++ b/config/lt_vers.am @@ -19,8 +19,8 @@ # After making changes, run bin/reconfigure to update other configure related # files like Makefile.in. LT_VERS_INTERFACE = 6 -LT_VERS_REVISION = 224 LT_VERS_AGE = 0 +LT_VERS_REVISION = 224 ## If the API changes *at all*, increment LT_VERS_INTERFACE and ## reset LT_VERS_REVISION to 0. @@ -40,9 +40,34 @@ LT_VERS_AGE = 0 ## Note that this versioning system doesn't attempt to handle ## the effects of the H5_V1_x_COMPAT flag. ## -## Since the revision number is automatically incremented by -## bin/h5vers, don't move LT_VERS_REVISION from the fourth line -## without also editing the script! +## Version numbers for wrapper shared library files. +LT_CXX_VERS_INTERFACE = 6 +LT_CXX_VERS_REVISION = 224 +LT_CXX_VERS_AGE = 0 + +LT_F_VERS_INTERFACE = 6 +LT_F_VERS_REVISION = 224 +LT_F_VERS_AGE = 0 + +LT_HL_VERS_INTERFACE = 6 +LT_HL_VERS_REVISION = 224 +LT_HL_VERS_AGE = 0 + +LT_HL_CXX_VERS_INTERFACE = 6 +LT_HL_CXX_VERS_REVISION = 224 +LT_HL_CXX_VERS_AGE = 0 + +LT_HL_F_VERS_INTERFACE = 6 +LT_HL_F_VERS_REVISION = 224 +LT_HL_F_VERS_AGE = 0 + +LT_JAVA_VERS_INTERFACE = 6 +LT_JAVA_VERS_REVISION = 224 +LT_JAVA_VERS_AGE = 0 + +LT_TOOLS_VERS_INTERFACE = 6 +LT_TOOLS_VERS_REVISION = 224 +LT_TOOLS_VERS_AGE = 0 # Copyright by The HDF Group. |