From 69e353628544cc6a68571ef59436cbe8f22bf4e6 Mon Sep 17 00:00:00 2001 From: Adrian Reber Date: Tue, 16 Apr 2019 18:59:21 +0000 Subject: [PATCH] Bump SONAME to 2 libcriu.so used to have the SONAME $ readelf -d lib/c/libcriu.so | grep SONAME 0x000000000000000e (SONAME) Library soname: [libcriu.so.1] The recent changes to libcriu (removed and added functions, changes from `char *`-args to `const char *`) are breaking ABI and API. This requires a new SONAME of 2. This patch changes the SONAME to 2: $ readelf -d lib/c/libcriu.so | grep SONAME 0x000000000000000e (SONAME) Library soname: [libcriu.so.2] Signed-off-by: Adrian Reber --- Makefile.versions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.versions b/Makefile.versions index b5d2eeec7..9c1b7448e 100644 --- a/Makefile.versions +++ b/Makefile.versions @@ -12,7 +12,7 @@ export CRIU_VERSION_EXTRA CRIU_VERSION_NAME CRIU_VERSION # # C library for CRIU. -CRIU_SO_VERSION_MAJOR := 1 +CRIU_SO_VERSION_MAJOR := 2 CRIU_SO_VERSION_MINOR := 0 export CRIU_SO_VERSION_MAJOR CRIU_SO_VERSION_MINOR