Add zeek-client via new submodule

The new module resides in auxil/zeek-client. It does not get installed unless
one configures with --enable-zeek-client.
This commit is contained in:
Christian Kreibich 2021-07-06 17:47:46 -07:00
parent 04dda8b4a7
commit a6b0fde65f
4 changed files with 10 additions and 1 deletions

4
configure vendored
View file

@ -64,6 +64,7 @@ Usage: $0 [OPTION]... [VAR=VALUE]...
--enable-static-broker build Broker statically (ignored if --with-broker is specified)
--enable-static-binpac build binpac statically (ignored if --with-binpac is specified)
--enable-cpp-tests build Zeek's C++ unit tests
--enable-zeek-client install the Zeek cluster management client (experimental)
--disable-zeekctl don't install ZeekControl
--disable-auxtools don't build or install auxiliary tools
--disable-archiver don't build or install zeek-archiver tool
@ -290,6 +291,9 @@ while [ $# -ne 0 ]; do
--enable-cpp-tests)
append_cache_entry ENABLE_ZEEK_UNIT_TESTS BOOL true
;;
--enable-zeek-client)
append_cache_entry INSTALL_ZEEK_CLIENT BOOL true
;;
--disable-zeekctl)
append_cache_entry INSTALL_ZEEKCTL BOOL false
;;