From mboxrd@z Thu Jan 1 00:00:00 1970 From: Harald Hoyer Date: Fri, 06 Mar 2009 10:29:09 +0000 Subject: libvolume_id minor number not increased Message-Id: <49B0FAF5.5060003@redhat.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-hotplug@vger.kernel.org Kay, because you added the symbol volume_id_set_uuid_sub() in commit 14e18278, you have to increase the library minor version! For the libtool versions scheme this means: dnl Increment CURRENT if any interfaces have been added, removed, dnl or changed since the last update and set REVISION to 0. dnl dnl Increment REVISION every time the code changes dnl dnl If any interfaces have been added since the last public release, dnl then increment AGE. dnl If any interfaces have been removed since the last public release, dnl then set AGE to 0. $ git diff configure.ac diff --git a/configure.ac b/configure.ac index 7fbc42c..f32b39f 100644 --- a/configure.ac +++ b/configure.ac @@ -22,9 +22,9 @@ AC_SUBST(LIBUDEV_LT_REVISION) AC_SUBST(LIBUDEV_LT_AGE) dnl /* libvolume_id version */ -VOLID_LT_CURRENT=1 -VOLID_LT_REVISION=9 -VOLID_LT_AGE=0 +VOLID_LT_CURRENT=2 +VOLID_LT_REVISION=0 +VOLID_LT_AGE=1 AC_SUBST(VOLID_LT_CURRENT) AC_SUBST(VOLID_LT_REVISION) AC_SUBST(VOLID_LT_AGE) this will build libvolume_id.so.1.1.0, which is the correct version