We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec301c6 commit c27139aCopy full SHA for c27139a
src/plugins/input/tcp/CMakeLists.txt
@@ -5,6 +5,16 @@ add_library(tcp-input MODULE
5
config.h
6
)
7
8
+if (CMAKE_HOST_SYSTEM_NAME STREQUAL "FreeBSD" OR CMAKE_HOST_SYSTEM_NAME STREQUAL "OpenBSD")
9
+ find_package(LibEpollShim REQUIRED)
10
+ include_directories(
11
+ ${LIBEPOLLSHIM_INCLUDE_DIRS}
12
+ )
13
+ target_link_libraries(tcp-input
14
+ ${LIBEPOLLSHIM_LIBRARIES}
15
16
+endif()
17
+
18
install(
19
TARGETS tcp-input
20
LIBRARY DESTINATION "${INSTALL_DIR_LIB}/ipfixcol2/"
0 commit comments