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 ae27169 commit 26bb4f9Copy full SHA for 26bb4f9
src/plugins/input/udp/CMakeLists.txt
@@ -5,6 +5,16 @@ add_library(udp-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(udp-input
14
+ ${LIBEPOLLSHIM_LIBRARIES}
15
16
+endif()
17
+
18
install(
19
TARGETS udp-input
20
LIBRARY DESTINATION "${INSTALL_DIR_LIB}/ipfixcol2/"
0 commit comments