All of lore.kernel.org
 help / color / mirror / Atom feed
* libvolume_id minor number not increased
@ 2009-03-06 10:29 Harald Hoyer
  2009-03-06 11:46 ` Kay Sievers
  0 siblings, 1 reply; 2+ messages in thread
From: Harald Hoyer @ 2009-03-06 10:29 UTC (permalink / raw)
  To: linux-hotplug

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

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-03-06 11:46 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-06 10:29 libvolume_id minor number not increased Harald Hoyer
2009-03-06 11:46 ` Kay Sievers

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.