diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2005-04-29 21:39:05 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2005-04-29 21:39:05 (GMT) |
commit | 8f4b37accf49681ff657bcd4496f3bd023895141 (patch) | |
tree | 05dd927e8ae8a64357868289d374330966b6d358 /src/Makefile.in | |
parent | 55f8e19fc7ba1b59f5b435a1e1949457907eff40 (diff) | |
download | hdf5-8f4b37accf49681ff657bcd4496f3bd023895141.zip hdf5-8f4b37accf49681ff657bcd4496f3bd023895141.tar.gz hdf5-8f4b37accf49681ff657bcd4496f3bd023895141.tar.bz2 |
[svn-r10700] Purpose:
Bug fix
Description:
Kent reminded me that switching the logic wasn't enough, we really needed
to add the definition to the configure script.
Solution:
Do that.
Platforms tested:
FreeBSD 4.11 (sleipnir)
Too minor to require h5committest
Diffstat (limited to 'src/Makefile.in')
-rw-r--r-- | src/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index e88cbd9..4b877ab 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -340,9 +340,9 @@ H5FC_PP = $(bindir)/h5pfc # Add libtool shared library version numbers to the HDF5 library # See libtool versioning documentation online. -LT_VERS_INTERFACE = 0 -LT_VERS_REVISION = 1 -LT_VERS_AGE = 0 +LT_VERS_INTERFACE = 2 +LT_VERS_REVISION = 0 +LT_VERS_AGE = 2 H5detect_CFLAGS = -g # Our main target, the HDF5 library |