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.
This commit is contained in:
Matthew Barr 2016-08-22 15:54:18 +10:00
parent 0a1491d907
commit 34d6a0d683

View File

@ -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})