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 /c++ | |
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 'c++')
-rw-r--r-- | c++/src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/c++/src/Makefile.am b/c++/src/Makefile.am index 84af348..6cd4768 100644 --- a/c++/src/Makefile.am +++ b/c++/src/Makefile.am @@ -28,7 +28,7 @@ AM_CPPFLAGS+=-I$(top_srcdir)/src lib_LTLIBRARIES=libhdf5_cpp.la # Add libtool numbers to the HDF5 C++ library (from config/lt_vers.am) -libhdf5_cpp_la_LDFLAGS= -version-info $(LT_VERS_INTERFACE):$(LT_VERS_REVISION):$(LT_VERS_AGE) $(AM_LDFLAGS) +libhdf5_cpp_la_LDFLAGS= -version-info $(LT_CXX_VERS_INTERFACE):$(LT_CXX_VERS_REVISION):$(LT_CXX_VERS_AGE) $(AM_LDFLAGS) bin_SCRIPTS=h5c++ |