This is an automated email from the ASF dual-hosted git repository.
cmcfarlen pushed a commit to branch 10.1.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/10.1.x by this push:
new c85bb2f07c These two plugins depends on libswoc (#12454)
c85bb2f07c is described below
commit c85bb2f07c1e544ef9b3b93b0a46ca9b42dd3e46
Author: Leif Hedstrom <[email protected]>
AuthorDate: Thu Aug 14 16:32:32 2025 +0000
These two plugins depends on libswoc (#12454)
(cherry picked from commit 6506614bceb4d99dd63ada8c1a6a4884fc6a9c09)
---
plugins/origin_server_auth/CMakeLists.txt | 4 ++--
plugins/slice/CMakeLists.txt | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/plugins/origin_server_auth/CMakeLists.txt
b/plugins/origin_server_auth/CMakeLists.txt
index e950aa4a50..a0e35dd236 100644
--- a/plugins/origin_server_auth/CMakeLists.txt
+++ b/plugins/origin_server_auth/CMakeLists.txt
@@ -19,7 +19,7 @@ project(origin_server_auth)
add_atsplugin(origin_server_auth origin_server_auth.cc aws_auth_v4.cc)
-target_link_libraries(origin_server_auth PRIVATE OpenSSL::Crypto)
+target_link_libraries(origin_server_auth PRIVATE OpenSSL::Crypto
libswoc::libswoc)
verify_remap_plugin(origin_server_auth)
@@ -34,6 +34,6 @@ project(s3_auth)
add_atsplugin(s3_auth origin_server_auth.cc aws_auth_v4.cc)
-target_link_libraries(s3_auth PRIVATE OpenSSL::Crypto)
+target_link_libraries(s3_auth PRIVATE OpenSSL::Crypto libswoc::libswoc)
verify_remap_plugin(s3_auth)
diff --git a/plugins/slice/CMakeLists.txt b/plugins/slice/CMakeLists.txt
index e82bc46c5c..8303b83c71 100644
--- a/plugins/slice/CMakeLists.txt
+++ b/plugins/slice/CMakeLists.txt
@@ -34,7 +34,7 @@ add_atsplugin(
ObjectSizeCache.cc
)
-target_link_libraries(slice PRIVATE PCRE::PCRE)
+target_link_libraries(slice PRIVATE PCRE::PCRE libswoc::libswoc)
if(BUILD_TESTING)
add_subdirectory(unit-tests)
endif()