This is an automated email from the ASF dual-hosted git repository.
bneradt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new 8f5d558461 Add tscore to access_control dependencies (#10968)
8f5d558461 is described below
commit 8f5d558461cc0ad2f91f579f40754678c2e6803a
Author: JosiahWI <[email protected]>
AuthorDate: Fri Jan 5 14:48:53 2024 -0600
Add tscore to access_control dependencies (#10968)
This makes the ats_base64_decode symbol visible to the access_control
plugin. This symbol is not part of the API, so access_control should not
be using it, or it should be promoted to the API. This commit does not
solve that; it only fixes it to work like it did before.
---
plugins/experimental/access_control/CMakeLists.txt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/plugins/experimental/access_control/CMakeLists.txt
b/plugins/experimental/access_control/CMakeLists.txt
index f93e39ea9e..515139c7b4 100644
--- a/plugins/experimental/access_control/CMakeLists.txt
+++ b/plugins/experimental/access_control/CMakeLists.txt
@@ -28,7 +28,7 @@ add_atsplugin(
utils.cc
)
-target_link_libraries(access_control PRIVATE PCRE::PCRE OpenSSL::SSL
OpenSSL::Crypto)
+target_link_libraries(access_control PRIVATE PCRE::PCRE OpenSSL::SSL
OpenSSL::Crypto ts::tscore)
if(BUILD_TESTING)
add_subdirectory(unit_tests)