* chore(ci): add a cargo timing buildspec (#5176) * build(deps): update pprof requirement from 0.14 to 0.15 in /bindings/rust/standard (#5334) * refactor(examples): remove connection pool (#5353) * ci: Fix the sslyze test for nix (#5283) * Include application message in Debug impl (#5359) * build: prevent needless rebuild with S2N_INTERN_LIBCRYPTO=ON and Ninja (#5356) * build(deps): bump baptiste0928/cargo-install from 3.3.0 to 3.3.1 in /.github/workflows in the all-gha-updates group (#5361) * tests(integv2): fix flaky session resumption test (#5362) * tests(integ): add more debug logging (#5363) * build(deps): bump nixbuild/nix-quick-install-action from 30 to 31 in /.github/workflows in the all-gha-updates group (#5366) * build(deps): bump nixbuild/nix-quick-install-action from 31 to 32 in /.github/workflows in the all-gha-updates group (#5371) * fix: policy util should ignore deprecated TLS1.2 kems if missing (#5372) * chore: apply clippy and fmt fixes (#5386) * feature: new TLS1.2 + FIPS CRT security policy (#5375) OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/s2n?expand=0&rev=87
15 lines
713 B
Diff
15 lines
713 B
Diff
diff -Nru s2n-tls-1.1.1.orig/CMakeLists.txt s2n-tls-1.1.1/CMakeLists.txt
|
|
--- s2n-tls-1.1.1.orig/CMakeLists.txt 2021-10-05 00:47:12.000000000 +0000
|
|
+++ s2n-tls-1.1.1/CMakeLists.txt 2021-10-11 08:49:14.435094522 +0000
|
|
@@ -456,6 +456,10 @@
|
|
|
|
target_link_libraries(${PROJECT_NAME} PUBLIC ${OS_LIBS} m)
|
|
|
|
+# Our ABI is not yet stable
|
|
+set_target_properties(${CMAKE_PROJECT_NAME} PROPERTIES VERSION 1.0.0)
|
|
+set_target_properties(${CMAKE_PROJECT_NAME} PROPERTIES SOVERSION 0unstable)
|
|
+
|
|
target_include_directories(${PROJECT_NAME} PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>)
|
|
target_include_directories(${PROJECT_NAME} PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/api> $<INSTALL_INTERFACE:include>)
|
|
|