From 66eb21f9cef07b9baed2ca814e058dc02a75268b Mon Sep 17 00:00:00 2001 From: Thorsten Alteholz Date: Wed, 17 Sep 2025 13:18:00 +0200 Subject: [PATCH] While looking at the Debian packaging for cpdb-libs-2.0~b7 I saw that some symbols have been removed since cpdb-libs-2.0~b5. According to [1] in this case the soname has to be changed as well. I would suggest a value of 3:1:0 - "revision" has to change - "current" needs to be increased as interfaces have been removed - "age" stays the same as ABI is not backward compatible I would be glad if a version cpdb-libs-2.0~b8 could be released. [1] https://autotools.info/libtool/version.html --- cpdb/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpdb/Makefile.am b/cpdb/Makefile.am index 6d08505..feb8352 100644 --- a/cpdb/Makefile.am +++ b/cpdb/Makefile.am @@ -17,7 +17,7 @@ libcpdb_la_LIBADD = $(GLIB_LIBS) libcpdb_la_LIBADD += $(GIO_LIBS) libcpdb_la_LIBADD += $(GIOUNIX_LIBS) -libcpdb_la_LDFLAGS = -no-undefined -version-info 2 +libcpdb_la_LDFLAGS = -no-undefined -version-info 3:1:0 libcpdb_frontend_la_SOURCES = cpdb-frontend.c \ @@ -33,7 +33,7 @@ libcpdb_frontend_la_LIBADD += $(GLIB_LIBS) libcpdb_frontend_la_LIBADD += $(GIO_LIBS) libcpdb_frontend_la_LIBADD += $(GIOUNIX_LIBS) -libcpdb_frontend_la_LDFLAGS = -no-undefined -version-info 2 +libcpdb_frontend_la_LDFLAGS = -no-undefined -version-info 3:1:0 cpdb_headersdir = $(includedir)/cpdb