From f9ec6be6ec52ce0a0892d7ad6ddd09e9e0738f25 Mon Sep 17 00:00:00 2001 From: Ned Wright Date: Thu, 8 Feb 2024 16:56:33 +0000 Subject: [PATCH] Adding maxminddb to imported libraries --- 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 ca65105..23488c7 100755 --- a/nodes/http_transaction_handler/CMakeLists.txt +++ b/nodes/http_transaction_handler/CMakeLists.txt @@ -73,6 +73,12 @@ execute_process ( ) install(FILES ${xml2} DESTINATION http_transaction_handler_service/lib) +execute_process ( + COMMAND sh -c "find /usr/lib* -name \"libmaxminddb.so*\" | awk '{printf \$0\";\"}'" + OUTPUT_VARIABLE maxminddb +) +install(FILES ${maxminddb} DESTINATION http_transaction_handler_service/lib) + gen_help( "--certs-dir " "Path to the hosts trusted ca directory" )