]> git.ipfire.org Git - thirdparty/vectorscan.git/commitdiff
Change SONAME to only use the major version number
authorMatthew Barr <matthew.barr@intel.com>
Mon, 22 Aug 2016 05:54:18 +0000 (15:54 +1000)
committerMatthew Barr <matthew.barr@intel.com>
Mon, 22 Aug 2016 06:04:48 +0000 (16:04 +1000)
Hyperscan will only break ABI on major version changes, and the SONAME
used for shared library versions should reflect this.

CMakeLists.txt

index d80b3d4c9fb7bdb6b05cb8d39085ffd94a0929a2..f6e03b0dc889ce36e91bc8f71550339cdbac6f13 100644 (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})