mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Add --disable-broker-tests configure option
This commit is contained in:
parent
bf246e59d0
commit
3c6afc8409
4 changed files with 10 additions and 2 deletions
4
CHANGES
4
CHANGES
|
@ -1,4 +1,8 @@
|
|||
|
||||
2.5-667 | 2018-06-15 15:30:11 -0500
|
||||
|
||||
* Add --disable-broker-tests configure option (Corelight)
|
||||
|
||||
2.5-663 | 2018-06-14 12:51:28 -0500
|
||||
|
||||
* Add Broker::max_threads and Broker::max_sleep tuning options,
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
2.5-663
|
||||
2.5-667
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 5ea77922d500d2a485dabafa9fbe81176e35060e
|
||||
Subproject commit a11f8c6e20264abe6147bc2b1be7ca3e7dabad05
|
4
configure
vendored
4
configure
vendored
|
@ -55,6 +55,7 @@ Usage: $0 [OPTION]... [VAR=VALUE]...
|
|||
--disable-auxtools don't build or install auxiliary tools
|
||||
--disable-perftools don't try to build with Google Perftools
|
||||
--disable-python don't try to build python bindings for broker
|
||||
--disable-broker-tests don'e try to build Broker unit tests
|
||||
|
||||
Required Packages in Non-Standard Locations:
|
||||
--with-openssl=PATH path to OpenSSL install root
|
||||
|
@ -227,6 +228,9 @@ while [ $# -ne 0 ]; do
|
|||
--disable-python)
|
||||
append_cache_entry DISABLE_PYTHON_BINDINGS BOOL true
|
||||
;;
|
||||
--disable-broker-tests)
|
||||
append_cache_entry BROKER_DISABLE_TESTS BOOL true
|
||||
;;
|
||||
--with-openssl=*)
|
||||
append_cache_entry OPENSSL_ROOT_DIR PATH $optarg
|
||||
;;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue