summaryrefslogtreecommitdiffstats
path: root/package/snort/Config.in
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-05-03 01:36:33 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-05-03 01:36:33 +0000
commit23a3dae9fd00d02f0f4ba14d43caf6c62636f441 (patch)
tree6316bc9c7b219971fff09c94eb235a6bf64250a7 /package/snort/Config.in
parent700a6a110474259158d94bc474b093c4e87745f7 (diff)
Updated snort to v2.3.3, added debug and inline-mode options to -custom package, fixed makefile, changed source url in control files
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@789 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/snort/Config.in')
-rw-r--r--package/snort/Config.in19
1 files changed, 16 insertions, 3 deletions
diff --git a/package/snort/Config.in b/package/snort/Config.in
index 6107842a5..c33310d1f 100644
--- a/package/snort/Config.in
+++ b/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