mirror of
https://github.com/zeek/zeek.git
synced 2025-10-17 05:58:20 +00:00
Introduce --enable-static-broker configuration option.
This option will build the bundled broker (and caf) statically.
This commit is contained in:
parent
5249a16384
commit
f7ad94f757
3 changed files with 13 additions and 2 deletions
4
configure
vendored
4
configure
vendored
|
@ -52,6 +52,7 @@ Usage: $0 [OPTION]... [VAR=VALUE]...
|
|||
--enable-perftools-debug use Google's perftools for debugging
|
||||
--enable-jemalloc link against jemalloc
|
||||
--enable-broccoli build or install the Broccoli library (deprecated)
|
||||
--enable-static-broker build broker statically (ignored if --with-broker is specified)
|
||||
--disable-broctl don't install Broctl
|
||||
--disable-auxtools don't build or install auxiliary tools
|
||||
--disable-perftools don't try to build with Google Perftools
|
||||
|
@ -223,6 +224,9 @@ while [ $# -ne 0 ]; do
|
|||
append_cache_entry DISABLE_RUBY_BINDINGS BOOL true
|
||||
append_cache_entry INSTALL_BROCCOLI BOOL yes
|
||||
;;
|
||||
--enable-static-broker)
|
||||
append_cache_entry BUILD_STATIC_BROKER BOOL true
|
||||
;;
|
||||
--disable-broctl)
|
||||
append_cache_entry INSTALL_BROCTL BOOL false
|
||||
;;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue