From: Jeff Layton Date: Mon, 24 Oct 2016 14:03:01 +0000 (-0400) Subject: libcephfs: move to SOVERSION 2.0.0 X-Git-Tag: v11.1.0~383^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=29961914a439453048ee27ffe9145bd2224b487d;p=ceph.git libcephfs: move to SOVERSION 2.0.0 The new libcephfs API is incompatible with the old. Move to SOVERSION 2.0.0 so that any programs built against the old headers will fail at load time. Signed-off-by: Jeff Layton --- diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 739d1485178c..c3685c20ea44 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -771,8 +771,8 @@ if(WITH_LIBCEPHFS) endforeach() set_target_properties(cephfs PROPERTIES OUTPUT_NAME cephfs - VERSION 1.0.0 - SOVERSION 1 + VERSION 2.0.0 + SOVERSION 2 LINK_FLAGS ${CEPHFS_LINK_FLAGS}) endif(ENABLE_SHARED) install(TARGETS cephfs DESTINATION ${CMAKE_INSTALL_LIBDIR})