From: Benjamin Barenblat Subject: Set package configuration options Forwarded: not-needed Configure Abseil for Debian. - Set the SONAME appropriately. - To minimize the possibility of future ABI breakage, treat absl::any, absl::optional, absl::string_view, and absl::variant as their own types (rather than aliases for the std:: versions), and compile everything in an inline namespace. --- a/CMake/AbseilHelpers.cmake +++ b/CMake/AbseilHelpers.cmake @@ -215,6 +215,9 @@ OUTPUT_NAME "absl_${_NAME}" ) endif() + + set_property(TARGET ${_NAME} PROPERTY SOVERSION 20200225) + set_property(TARGET ${_NAME} PROPERTY VERSION "20200225.0.2") else() # Generating header-only library add_library(${_NAME} INTERFACE) --- a/absl/base/options.h +++ b/absl/base/options.h @@ -100,7 +100,7 @@ ABSL_OPTION_USE_STD_ANY // User code should not inspect this macro. To check in the preprocessor if // absl::any is a typedef of std::any, use the feature macro ABSL_USES_STD_ANY. -#define ABSL_OPTION_USE_STD_ANY 2 +#define ABSL_OPTION_USE_STD_ANY 0 // ABSL_OPTION_USE_STD_OPTIONAL @@ -127,7 +127,7 @@ ABSL_OPTION_USE_STD_OPTIONAL // absl::optional is a typedef of std::optional, use the feature macro // ABSL_USES_STD_OPTIONAL. -#define ABSL_OPTION_USE_STD_OPTIONAL 2 +#define ABSL_OPTION_USE_STD_OPTIONAL 0 // ABSL_OPTION_USE_STD_STRING_VIEW @@ -154,7 +154,7 @@ ABSL_OPTION_USE_STD_STRING_VIEW // absl::string_view is a typedef of std::string_view, use the feature macro // ABSL_USES_STD_STRING_VIEW. -#define ABSL_OPTION_USE_STD_STRING_VIEW 2 +#define ABSL_OPTION_USE_STD_STRING_VIEW 0 // ABSL_OPTION_USE_STD_VARIANT // @@ -180,7 +180,7 @@ ABSL_OPTION_USE_STD_VARIANT // absl::variant is a typedef of std::variant, use the feature macro // ABSL_USES_STD_VARIANT. -#define ABSL_OPTION_USE_STD_VARIANT 2 +#define ABSL_OPTION_USE_STD_VARIANT 0 // ABSL_OPTION_USE_INLINE_NAMESPACE @@ -206,6 +206,6 @@ ABSL_OPTION_INLINE_NAMESPACE_NAME // allowed. #define ABSL_OPTION_USE_INLINE_NAMESPACE 1 -#define ABSL_OPTION_INLINE_NAMESPACE_NAME lts_2020_02_25 +#define ABSL_OPTION_INLINE_NAMESPACE_NAME debian0 #endif // ABSL_BASE_OPTIONS_H_