Codebase list geos / 8074b4e
Add patch to not include pre-release in SONAME. Bas Couwenberg 2 years ago
3 changed file(s) with 19 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
44 * Bump debhelper compat to 12, changes:
55 - Drop --list-missing from dh_install
66 * Update copyright file.
7 * Add patch to not include pre-release in SONAME.
78
89 -- Bas Couwenberg <sebastic@debian.org> Fri, 01 Oct 2021 06:01:16 +0200
910
0 soname.patch
0 Description: Don't include pre-release in SONAME.
1 Author: Bas Couwenberg <sebastic@debian.org>
2 Forwarded: https://lists.osgeo.org/pipermail/geos-devel/2021-October/010361.html
3
4 --- a/CMakeLists.txt
5 +++ b/CMakeLists.txt
6 @@ -271,8 +271,8 @@ if(BUILD_SHARED_LIBS)
7 target_compile_definitions(geos
8 PRIVATE $<IF:$<CXX_COMPILER_ID:MSVC>,GEOS_DLL_EXPORT,DLL_EXPORT>)
9
10 - set_target_properties(geos PROPERTIES VERSION ${GEOS_VERSION})
11 - set_target_properties(geos PROPERTIES SOVERSION ${GEOS_VERSION})
12 + set_target_properties(geos PROPERTIES VERSION ${CMAKE_PROJECT_VERSION})
13 + set_target_properties(geos PROPERTIES SOVERSION ${CMAKE_PROJECT_VERSION})
14 endif()
15
16 #-----------------------------------------------------------------------------