Skip to content

Commit 83ab52c

Browse files
authored
Merge pull request #20 from mmguero-dev/master
fixes to make compatible with Zeek v6.0
2 parents 4aa8e05 + 2b2f8c4 commit 83ab52c

File tree

2 files changed

+1
-10
lines changed

2 files changed

+1
-10
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
cmake_minimum_required(VERSION 2.8)
2+
cmake_minimum_required(VERSION 3.15 FATAL_ERROR)
33

44
project(ZeekPluginGQUIC)
55

configure

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ Usage: $0 [OPTIONS]
2525
--install-root=DIR Path where to install plugin into
2626
--with-binpac=DIR Path to BinPAC installation root
2727
--with-broker=DIR Path to Broker installation root
28-
--with-caf=DIR Path to CAF installation root
2928
--with-bifcl=PATH Path to bifcl executable
3029
--enable-debug Compile in debugging mode
3130
EOF
@@ -91,11 +90,6 @@ while [ $# -ne 0 ]; do
9190
broker_root=$optarg
9291
;;
9392

94-
--with-caf=*)
95-
append_cache_entry CAF_ROOT_DIR PATH $optarg
96-
caf_root=$optarg
97-
;;
98-
9993
--with-bifcl=*)
10094
append_cache_entry BifCl_EXE PATH $optarg
10195
;;
@@ -160,9 +154,6 @@ if [ -z "$zeekdist" ]; then
160154
append_cache_entry BROKER_ROOT_DIR PATH `${zeek_config} --broker_root`
161155
fi
162156

163-
if [ -z "$caf_root" ]; then
164-
append_cache_entry CAF_ROOT_DIR PATH `${zeek_config} --caf_root`
165-
fi
166157
else
167158
# Using legacy bro-config, so we must use the "--bro_dist" option.
168159
zeekdist=`${zeek_config} --bro_dist 2> /dev/null`

0 commit comments

Comments
 (0)