diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2023-07-27 18:20:36 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2023-07-27 18:20:36 +0200 |
commit | 7bd8081cd25cb06d6535885ca9fbf44f64677af6 (patch) | |
tree | 22768b73aa1d09bef68ba3adc31fa80f74b433e4 | |
parent | bc0a5782cce511886476acf57c5748ba7a232277 (diff) |
bump libpcap dependency to 1.9.0
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index f2f4fa80c..823a7e820 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -288,9 +288,9 @@ else() set(DEFAULT_NDPI_INCLUDE ${NDPI_INCLUDE_DIRS}) endif() -pkg_check_modules(PCAP REQUIRED libpcap>=1.8.1) +pkg_check_modules(PCAP REQUIRED libpcap>=1.9.0) # no *.pc file before 1.9.0 if(NOT pkgcfg_lib_PCAP_pcap) - find_package(PCAP "1.8.1" REQUIRED) + find_package(PCAP "1.9.0" REQUIRED) endif() target_compile_options(nDPId PRIVATE "-pthread") |