diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-05-03 01:36:33 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-05-03 01:36:33 +0000 |
commit | 128f9daebad31765fb294369f31192c7516047d0 (patch) | |
tree | 42fde4389c91420660ab9a89a5413c42f6f0ffdc /openwrt/package/snort/Config.in | |
parent | c6bd41147fc0c0e34f12ee87655ef6637f1165d8 (diff) | |
download | mtk-20170518-128f9daebad31765fb294369f31192c7516047d0.zip mtk-20170518-128f9daebad31765fb294369f31192c7516047d0.tar.gz mtk-20170518-128f9daebad31765fb294369f31192c7516047d0.tar.bz2 |
Updated snort to v2.3.3, added debug and inline-mode options to -custom package, fixed makefile, changed source url in control files
SVN-Revision: 789
Diffstat (limited to 'openwrt/package/snort/Config.in')
-rw-r--r-- | openwrt/package/snort/Config.in | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/openwrt/package/snort/Config.in b/openwrt/package/snort/Config.in index 6107842..c33310d 100644 --- a/openwrt/package/snort/Config.in +++ b/openwrt/package/snort/Config.in @@ -41,17 +41,30 @@ choice select BR2_PACKAGE_LIBPCAP select BR2_PACKAGE_LIBPCRE + config BR2_PACKAGE_SNORT_ENABLE_DEBUG + prompt "debug (enable debugging options, useful for bugreports)" + bool + default n + depends BR2_PACKAGE_SNORT_CUSTOM + + config BR2_PACKAGE_SNORT_ENABLE_INLINE + prompt "inline mode (read packets from iptables instead of libpcap)" + bool + default n + depends BR2_PACKAGE_SNORT_CUSTOM + select BR2_PACKAGE_IPTABLES + config BR2_PACKAGE_SNORT_WITH_MYSQL prompt "MySQL database support" bool - default y + default n depends BR2_PACKAGE_SNORT_CUSTOM select BR2_PACKAGE_LIBMYSQLCLIENT config BR2_PACKAGE_SNORT_WITH_PGSQL prompt "PostgreSQL database support" bool - default y + default n depends BR2_PACKAGE_SNORT_CUSTOM select BR2_PACKAGE_LIBPQ @@ -59,5 +72,5 @@ endchoice config BR2_PACKAGE_SNORT tristate - default BR2_PACKAGE_SNORT_BASIC || BR2_PACKAGE_SNORT_MYSQL || BR2_PACKAGE_SNORT_PGSQL + default BR2_PACKAGE_SNORT_BASIC || BR2_PACKAGE_SNORT_MYSQL || BR2_PACKAGE_SNORT_PGSQL || BR2_PACKAGE_SNORT_CUSTOM |