From: Andres Mejia Date: Mon, 14 Jan 2013 04:30:57 +0000 (-0500) Subject: Bump soname major version in CMakeLists.txt. X-Git-Tag: v3.1.1~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ecd860e4f5d013c72f2bfd5f62923dcc5aa8a2c8;p=thirdparty%2Flibarchive.git Bump soname major version in CMakeLists.txt. --- diff --git a/CMakeLists.txt b/CMakeLists.txt index ddbaca173..0c8bf8122 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -63,8 +63,8 @@ SET(LIBARCHIVE_VERSION_STRING "${VERSION}") # libarchive 2.8 == interface version 10 = 2 + 8 # libarchive 2.9 == interface version 11 = 2 + 9 # libarchive 3.0 == interface version 12 -# libarchive 3.x == interface version 12 + x -math(EXPR INTERFACE_VERSION "12 + ${_minor}") +# libarchive 3.1 == interface version 13 +math(EXPR INTERFACE_VERSION "13 + ${_minor}") # Set SOVERSION == Interface version # ?? Should there be more here ??