diff options
Diffstat (limited to 'debian/patches/configure.diff')
-rw-r--r-- | debian/patches/configure.diff | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/debian/patches/configure.diff b/debian/patches/configure.diff index c9a28733..30d1152b 100644 --- a/debian/patches/configure.diff +++ b/debian/patches/configure.diff @@ -15,13 +15,11 @@ Configure Abseil for Debian. --- a/CMake/AbseilHelpers.cmake +++ b/CMake/AbseilHelpers.cmake -@@ -298,7 +298,8 @@ - if(ABSL_ENABLE_INSTALL) +@@ -314,6 +314,7 @@ set_target_properties(${_NAME} PROPERTIES OUTPUT_NAME "absl_${_NAME}" -- SOVERSION "2401.0.0" -+ SOVERSION 20240116 -+ VERSION "20240116.0.1" + SOVERSION "${ABSL_SOVERSION}" ++ VERSION "${ABSL_SOVERSION}.0.0" ) endif() else() @@ -67,8 +65,8 @@ Configure Abseil for Debian. // allowed. #define ABSL_OPTION_USE_INLINE_NAMESPACE 1 --#define ABSL_OPTION_INLINE_NAMESPACE_NAME lts_20240116 -+#define ABSL_OPTION_INLINE_NAMESPACE_NAME debian6 +-#define ABSL_OPTION_INLINE_NAMESPACE_NAME lts_20240722 ++#define ABSL_OPTION_INLINE_NAMESPACE_NAME debian7 // ABSL_OPTION_HARDENED // @@ -80,3 +78,14 @@ Configure Abseil for Debian. +#define ABSL_OPTION_HARDENED 1 #endif // ABSL_BASE_OPTIONS_H_ +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -24,7 +24,7 @@ + endif (POLICY CMP0141) + + project(absl LANGUAGES CXX VERSION 20240722) +-set(ABSL_SOVERSION "2407.0.0") ++set(ABSL_SOVERSION "20240722") + include(CTest) + + # Output directory is correct by default for most build setups. However, when |