mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Revert "Merge remote-tracking branch 'origin/topic/neverlord/gh-3247'"
This reverts commit1673f1db05
, reversing changes made to619113f674
.
This commit is contained in:
parent
1673f1db05
commit
c9f4bacd73
4 changed files with 3 additions and 14 deletions
4
CHANGES
4
CHANGES
|
@ -1,7 +1,3 @@
|
||||||
6.1.0-dev.351 | 2023-08-29 12:07:42 -0700
|
|
||||||
|
|
||||||
* Forward OpenSSL include path to plugins (Dominik Charousset, Corelight)
|
|
||||||
|
|
||||||
6.1.0-dev.349 | 2023-08-29 09:11:21 -0700
|
6.1.0-dev.349 | 2023-08-29 09:11:21 -0700
|
||||||
|
|
||||||
* CI: Add ubuntu 23.04 build (Tim Wojtulewicz, Corelight)
|
* CI: Add ubuntu 23.04 build (Tim Wojtulewicz, Corelight)
|
||||||
|
|
|
@ -290,8 +290,7 @@ add_library(zeek_dynamic_plugin_base INTERFACE)
|
||||||
target_include_directories(
|
target_include_directories(
|
||||||
zeek_dynamic_plugin_base
|
zeek_dynamic_plugin_base
|
||||||
INTERFACE $<INSTALL_INTERFACE:include> $<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}>
|
INTERFACE $<INSTALL_INTERFACE:include> $<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}>
|
||||||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src> "${OPENSSL_INCLUDE_DIR}")
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src>)
|
||||||
target_link_libraries(zeek_dynamic_plugin_base INTERFACE Threads::Threads)
|
|
||||||
add_library(Zeek::DynamicPluginBase ALIAS zeek_dynamic_plugin_base)
|
add_library(Zeek::DynamicPluginBase ALIAS zeek_dynamic_plugin_base)
|
||||||
set_target_properties(zeek_dynamic_plugin_base PROPERTIES EXPORT_NAME DynamicPluginBase)
|
set_target_properties(zeek_dynamic_plugin_base PROPERTIES EXPORT_NAME DynamicPluginBase)
|
||||||
install(TARGETS zeek_dynamic_plugin_base EXPORT ZeekTargets)
|
install(TARGETS zeek_dynamic_plugin_base EXPORT ZeekTargets)
|
||||||
|
@ -751,7 +750,7 @@ endif ()
|
||||||
|
|
||||||
# Forward user-defined hint for OpenSSL to the plugins. Use a cache variable to
|
# Forward user-defined hint for OpenSSL to the plugins. Use a cache variable to
|
||||||
# make sure this variable survives CMake re-runs. Note: This variable is picked
|
# make sure this variable survives CMake re-runs. Note: This variable is picked
|
||||||
# up in ZeekPluginConfig.cmake.in and ZeekConfig.cmake.in.
|
# up in ZeekPluginConfig.cmake.in.
|
||||||
if (OPENSSL_ROOT_DIR)
|
if (OPENSSL_ROOT_DIR)
|
||||||
set(ZeekOpenSSLHint "${OPENSSL_ROOT_DIR}" CACHE INTERNAL "" FORCE)
|
set(ZeekOpenSSLHint "${OPENSSL_ROOT_DIR}" CACHE INTERNAL "" FORCE)
|
||||||
elseif (DEFINED ENV{OPENSSL_ROOT_DIR})
|
elseif (DEFINED ENV{OPENSSL_ROOT_DIR})
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
6.1.0-dev.351
|
6.1.0-dev.349
|
||||||
|
|
|
@ -12,12 +12,6 @@ set(CMAKE_THREAD_PREFER_PTHREAD ON)
|
||||||
set(THREADS_PREFER_PTHREAD_FLAG ON)
|
set(THREADS_PREFER_PTHREAD_FLAG ON)
|
||||||
find_dependency(Threads REQUIRED)
|
find_dependency(Threads REQUIRED)
|
||||||
|
|
||||||
# Find OpenSSL and Forward hints from Zeek's build config.
|
|
||||||
set(ZeekOpenSSLHint "@ZeekOpenSSLHint@")
|
|
||||||
if (ZeekOpenSSLHint AND NOT OPENSSL_ROOT_DIR)
|
|
||||||
set(OPENSSL_ROOT_DIR "${ZeekOpenSSLHint}" CACHE
|
|
||||||
PATH "Directory hint for finding OpenSSL" FORCE)
|
|
||||||
endif ()
|
|
||||||
find_dependency(OpenSSL REQUIRED)
|
find_dependency(OpenSSL REQUIRED)
|
||||||
|
|
||||||
# In our MSVC build, we have these extra dependencies from Conan.
|
# In our MSVC build, we have these extra dependencies from Conan.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue