From: Matthew Barr Date: Mon, 22 Aug 2016 05:54:18 +0000 (+1000) Subject: Change SONAME to only use the major version number X-Git-Tag: v4.3.0^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=34d6a0d6831b73b0f295af3409f0ce0075dab54a;p=thirdparty%2Fvectorscan.git Change SONAME to only use the major version number Hyperscan will only break ABI on major version changes, and the SONAME used for shared library versions should reflect this. --- diff --git a/CMakeLists.txt b/CMakeLists.txt index d80b3d4c..f6e03b0d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1000,7 +1000,7 @@ endif() # choose which ones to build set (LIB_VERSION ${HS_VERSION}) -set (LIB_SOVERSION ${HS_MAJOR_VERSION}.${HS_MINOR_VERSION}) +set (LIB_SOVERSION ${HS_MAJOR_VERSION}) add_library(hs_exec OBJECT ${hs_exec_SRCS})