5b63325e86
Disable building with libressl to avoid the following build failure
raised since the addition of the package in commit
ea36681572
:
In file included from /home/thomas/autobuild/instance-2/output-1/build/zeek-4.1.1/src/analyzer/protocol/mime/MIME.cc:7:
/home/thomas/autobuild/instance-2/output-1/build/zeek-4.1.1/src/zeek/digest.h: In function 'void* EVP_MD_CTX_md_data(const EVP_MD_CTX*)':
/home/thomas/autobuild/instance-2/output-1/build/zeek-4.1.1/src/zeek/digest.h:22:12: error: invalid use of incomplete type 'const EVP_MD_CTX' {aka 'const struct env_md_ctx_st'}
22 | return ctx->md_data;
| ^~
Fixes:
- http://autobuild.buildroot.org/results/2db2988d495f9d06d058fb532a2dcfa9ef6e207c
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
45 lines
1.3 KiB
Plaintext
45 lines
1.3 KiB
Plaintext
config BR2_PACKAGE_ZEEK
|
|
bool "zeek"
|
|
depends on BR2_USE_MMU # fork()
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on !BR2_STATIC_LIBS
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
depends on BR2_USE_WCHAR
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_7 # C++17
|
|
depends on BR2_HOST_GCC_AT_LEAST_7 # host-zeek
|
|
select BR2_PACKAGE_LIBPCAP
|
|
select BR2_PACKAGE_MUSL_FTS if !BR2_TOOLCHAIN_USES_GLIBC
|
|
select BR2_PACKAGE_OPENSSL
|
|
select BR2_PACKAGE_OPENSSL_FORCE_LIBOPENSSL
|
|
select BR2_PACKAGE_ZLIB
|
|
help
|
|
The Zeek Network Security Monitor
|
|
|
|
Zeek is a powerful network analysis framework that is much
|
|
different from the typical IDS you may know. (Zeek is the new
|
|
name for the long-established Bro system.)
|
|
|
|
https://www.zeek.org
|
|
|
|
if BR2_PACKAGE_ZEEK
|
|
|
|
config BR2_PACKAGE_ZEEK_ZEEKCTL
|
|
bool "zeekctl"
|
|
select BR2_PACKAGE_BASH # runtime
|
|
select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS # bash
|
|
select BR2_PACKAGE_PYTHON3
|
|
select BR2_PACKAGE_PYTHON3_CURSES
|
|
select BR2_PACKAGE_PYTHON3_SQLITE
|
|
select BR2_PACKAGE_PYTHON3_ZLIB
|
|
help
|
|
Tool for managing Zeek deployments
|
|
|
|
endif
|
|
|
|
comment "zeek needs a toolchain w/ C++, wchar, threads, dynamic library, gcc >= 7, host gcc >= 7"
|
|
depends on BR2_USE_MMU
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
|
|
!BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_7 || \
|
|
!BR2_HOST_GCC_AT_LEAST_7
|