From 34d6a0d6831b73b0f295af3409f0ce0075dab54a Mon Sep 17 00:00:00 2001 From: Matthew Barr Date: Mon, 22 Aug 2016 15:54:18 +1000 Subject: [PATCH] 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. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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})