diff options
author | Richard Yao <[email protected]> | 2013-09-26 13:44:10 -0400 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2013-10-10 16:56:51 -0700 |
commit | a6ce1eae54ca048ae7e7dfdcad05c5565a129226 (patch) | |
tree | 182cb119577a2c9c8db5d04d6daa54cdf05feeef /lib/libzpool/Makefile.am | |
parent | 31fc19399e597e3391f19f1392ab120f1de0d5f2 (diff) |
Fix libzfs_core changes to follow GNU libtool guidelines
The GNU libtool documentation states to start with a version of 0:0:0,
rather than 1:1:0. Illumos uses the name libzfs_core.so.1, so to be
consistent, we should go with 1:0:0.
http://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info
The GNU libtool documentation also provides guidence on how the version
information should be incremented. Doing this does a SONAME bump of the
libzfs and libzpool libraries. This is particularly important on Gentoo
because a SONAME bump enables portage to retain the older libraries
until any packages that link to them are rebuilt. The main example of
this is GRUB2's grub2-mkconfig, which will break unless it is rebuilt
against the new libraries.
Signed-off-by: Richard Yao <[email protected]>
Signed-off-by: Brian Behlendorf <[email protected]>
Issue #1751
Diffstat (limited to 'lib/libzpool/Makefile.am')
-rw-r--r-- | lib/libzpool/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libzpool/Makefile.am b/lib/libzpool/Makefile.am index 32221694a..da81659d2 100644 --- a/lib/libzpool/Makefile.am +++ b/lib/libzpool/Makefile.am @@ -100,7 +100,7 @@ libzpool_la_LIBADD = \ $(top_builddir)/lib/libnvpair/libnvpair.la libzpool_la_LIBADD += $(ZLIB) -libzpool_la_LDFLAGS = -version-info 1:1:0 +libzpool_la_LDFLAGS = -version-info 2:0:0 EXTRA_DIST = \ $(top_srcdir)/module/zfs/vdev_disk.c \ |