From 00c1db33f97b6672699f3db181600f43f2c54d50 Mon Sep 17 00:00:00 2001 From: Ned Wright Date: Sun, 4 Jan 2026 12:00:56 +0000 Subject: [PATCH] update code to support brotli --- nodes/http_transaction_handler/CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nodes/http_transaction_handler/CMakeLists.txt b/nodes/http_transaction_handler/CMakeLists.txt index 77933b0..d5b44ea 100755 --- a/nodes/http_transaction_handler/CMakeLists.txt +++ b/nodes/http_transaction_handler/CMakeLists.txt @@ -80,6 +80,12 @@ execute_process ( ) install(FILES ${maxminddb} DESTINATION http_transaction_handler_service/lib) +execute_process ( + COMMAND sh -c "find /usr/lib* -name \"libbrotli*.so*\" | awk '{printf \$0\";\"}'" + OUTPUT_VARIABLE brotli +) +install(FILES ${brotli} DESTINATION http_transaction_handler_service/lib) + gen_help( "--certs-dir " "Path to the hosts trusted ca directory" )