1
0
Fork 0
mirror of https://github.com/pavel-odintsov/fastnetmon synced 2024-06-08 16:46:06 +02:00

Changed bgp_protocol library to be static. It was definitely mistake that it was linked as dynamic one and it caused issues with Fedora's dependency checker

This commit is contained in:
Pavel Odintsov 2022-05-27 21:16:17 +01:00
parent 2a55edd99e
commit 476dba655d

View File

@ -271,7 +271,7 @@ target_link_libraries(unified_parser fastnetmon_packet_parser)
# Our ipfix database library
add_library(ipfix_rfc STATIC ipfix_rfc.cpp)
add_library(bgp_protocol bgp_protocol.cpp)
add_library(bgp_protocol STATIC bgp_protocol.cpp)
# Our packet parser
add_library(fastnetmon_packet_parser STATIC fastnetmon_packet_parser.c)