mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Merge remote-tracking branch 'origin/fastpath'
* origin/fastpath: Don't build broccoli ruby bindings by default, use --enable-ruby to do so. Revert "Fix race condition in unit test." Fix race condition in unit test. Change percent_lost in capture-loss from a string to a double.
This commit is contained in:
commit
943f44314a
4 changed files with 15 additions and 4 deletions
5
CHANGES
5
CHANGES
|
@ -1,4 +1,9 @@
|
||||||
|
|
||||||
|
2.2-beta-173 | 2013-10-29 09:25:31 -0700
|
||||||
|
|
||||||
|
* Deprecate Broccoli Ruby bindings and no longer build them by
|
||||||
|
default; use --enable-ruby to do so. (Jon Siwek)
|
||||||
|
|
||||||
2.2-beta-167 | 2013-10-29 06:02:38 -0700
|
2.2-beta-167 | 2013-10-29 06:02:38 -0700
|
||||||
|
|
||||||
* Change percent_lost in capture-loss from a string to a double.
|
* Change percent_lost in capture-loss from a string to a double.
|
||||||
|
|
5
NEWS
5
NEWS
|
@ -421,6 +421,11 @@ Changed Functionality
|
||||||
error message: "error running update-stats". To fix this problem,
|
error message: "error running update-stats". To fix this problem,
|
||||||
either remove that file (it is not needed) or rename it.
|
either remove that file (it is not needed) or rename it.
|
||||||
|
|
||||||
|
- Due to lack of maintenance, the Ruby bindings for Broccoli are now
|
||||||
|
deprecated and the build process no longer includes them by default.
|
||||||
|
For the time being, they can still be enabled by configuring with
|
||||||
|
``--enable-ruby``, however we plan to remove Ruby support with the
|
||||||
|
next Bro release.
|
||||||
|
|
||||||
Bro 2.1
|
Bro 2.1
|
||||||
=======
|
=======
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
2.2-beta-167
|
2.2-beta-173
|
||||||
|
|
7
configure
vendored
7
configure
vendored
|
@ -32,12 +32,12 @@ Usage: $0 [OPTION]... [VAR=VALUE]...
|
||||||
--enable-perftools force use of Google perftools on non-Linux systems
|
--enable-perftools force use of Google perftools on non-Linux systems
|
||||||
(automatically on when perftools is present on Linux)
|
(automatically on when perftools is present on Linux)
|
||||||
--enable-perftools-debug use Google's perftools for debugging
|
--enable-perftools-debug use Google's perftools for debugging
|
||||||
|
--enable-ruby build ruby bindings for broccoli (deprecated)
|
||||||
--disable-broccoli don't build or install the Broccoli library
|
--disable-broccoli don't build or install the Broccoli library
|
||||||
--disable-broctl don't install Broctl
|
--disable-broctl don't install Broctl
|
||||||
--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 broccoli
|
--disable-python don't try to build python bindings for broccoli
|
||||||
--disable-ruby don't try to build ruby bindings for broccoli
|
|
||||||
--disable-dataseries don't use the optional DataSeries log writer
|
--disable-dataseries don't use the optional DataSeries log writer
|
||||||
--disable-elasticsearch don't use the optional ElasticSearch log writer
|
--disable-elasticsearch don't use the optional ElasticSearch log writer
|
||||||
|
|
||||||
|
@ -113,6 +113,7 @@ append_cache_entry INSTALL_BROCTL BOOL true
|
||||||
append_cache_entry CPACK_SOURCE_IGNORE_FILES STRING
|
append_cache_entry CPACK_SOURCE_IGNORE_FILES STRING
|
||||||
append_cache_entry ENABLE_MOBILE_IPV6 BOOL false
|
append_cache_entry ENABLE_MOBILE_IPV6 BOOL false
|
||||||
append_cache_entry DISABLE_PERFTOOLS BOOL false
|
append_cache_entry DISABLE_PERFTOOLS BOOL false
|
||||||
|
append_cache_entry DISABLE_RUBY_BINDINGS BOOL true
|
||||||
|
|
||||||
# parse arguments
|
# parse arguments
|
||||||
while [ $# -ne 0 ]; do
|
while [ $# -ne 0 ]; do
|
||||||
|
@ -174,8 +175,8 @@ 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-ruby)
|
--enable-ruby)
|
||||||
append_cache_entry DISABLE_RUBY_BINDINGS BOOL true
|
append_cache_entry DISABLE_RUBY_BINDINGS BOOL false
|
||||||
;;
|
;;
|
||||||
--disable-dataseries)
|
--disable-dataseries)
|
||||||
append_cache_entry DISABLE_DATASERIES BOOL true
|
append_cache_entry DISABLE_DATASERIES BOOL true
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue