Add --disable-broker-tests configure option

This commit is contained in:
Jon Siwek 2018-06-15 15:30:11 -05:00
parent bf246e59d0
commit 3c6afc8409
4 changed files with 10 additions and 2 deletions

View file

@ -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 2.5-663 | 2018-06-14 12:51:28 -0500
* Add Broker::max_threads and Broker::max_sleep tuning options, * Add Broker::max_threads and Broker::max_sleep tuning options,

View file

@ -1 +1 @@
2.5-663 2.5-667

@ -1 +1 @@
Subproject commit 5ea77922d500d2a485dabafa9fbe81176e35060e Subproject commit a11f8c6e20264abe6147bc2b1be7ca3e7dabad05

4
configure vendored
View file

@ -55,6 +55,7 @@ Usage: $0 [OPTION]... [VAR=VALUE]...
--disable-auxtools don't build or install auxiliary tools --disable-auxtools don't build or install auxiliary tools
--disable-perftools don't try to build with Google Perftools --disable-perftools don't try to build with Google Perftools
--disable-python don't try to build python bindings for broker --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: Required Packages in Non-Standard Locations:
--with-openssl=PATH path to OpenSSL install root --with-openssl=PATH path to OpenSSL install root
@ -227,6 +228,9 @@ while [ $# -ne 0 ]; do
--disable-python) --disable-python)
append_cache_entry DISABLE_PYTHON_BINDINGS BOOL true append_cache_entry DISABLE_PYTHON_BINDINGS BOOL true
;; ;;
--disable-broker-tests)
append_cache_entry BROKER_DISABLE_TESTS BOOL true
;;
--with-openssl=*) --with-openssl=*)
append_cache_entry OPENSSL_ROOT_DIR PATH $optarg append_cache_entry OPENSSL_ROOT_DIR PATH $optarg
;; ;;