-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
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
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,4 @@ libzfs_core_la_SOURCES = \ | |
libzfs_core_la_LIBADD = \ | ||
$(top_builddir)/lib/libnvpair/libnvpair.la | ||
|
||
libzfs_core_la_LDFLAGS = -version-info 1:1:0 | ||
libzfs_core_la_LDFLAGS = -version-info 1:0:0 | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
dajhorn
Contributor
|
@ryao, why was the library revision number decremented here?