summaryrefslogtreecommitdiffstats
path: root/rules/tcpdump.in
diff options
context:
space:
mode:
authorJochen Frieling <j.frieling@pengutronix.de>2008-06-04 12:51:05 +0000
committerJochen Frieling <j.frieling@pengutronix.de>2008-06-04 12:51:05 +0000
commit596f6514f2ee5cc295a2892704b66c6709478061 (patch)
treebf1c1fb7deca779b20827a8487a7475447664a32 /rules/tcpdump.in
parent83d2727bcb1a3b059c8c5939f267c45b6ce36ed2 (diff)
downloadptxdist-596f6514f2ee5cc295a2892704b66c6709478061.tar.gz
ptxdist-596f6514f2ee5cc295a2892704b66c6709478061.tar.xz
* t*..z*.in: turn bool into tristate for package selections
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@8310 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/tcpdump.in')
-rw-r--r--rules/tcpdump.in11
1 files changed, 6 insertions, 5 deletions
diff --git a/rules/tcpdump.in b/rules/tcpdump.in
index 94d3f21ff..23c7bb64f 100644
--- a/rules/tcpdump.in
+++ b/rules/tcpdump.in
@@ -1,6 +1,6 @@
menuconfig TCPDUMP
- bool
- prompt "tcpdump "
+ tristate
+ prompt "tcpdump "
select LIBPCAP
select OPENSSL if TCPDUMP_DISABLE_CRYPTO
help
@@ -12,10 +12,11 @@ menuconfig TCPDUMP
a network interface. In all cases, only packets that match
expression will be processed by tcpdump.
+if TCPDUMP
+
config TCPDUMP_ENABLE_CRYPTO
bool
prompt "enable crypto support"
- depends on TCPDUMP
depends on BROKEN
help
Select this, if you don't need support for
@@ -25,17 +26,17 @@ config TCPDUMP_SMB
bool
prompt "enable possibly-buggy SMB printer"
default y
- depends on TCPDUMP
help
Notes from configure, when this entry is checked:
The SMB printer may have exploitable buffer overflows!!!
config TCPDUMP_IPV6
bool
- depends on TCPDUMP
select LIBPCAP_IPV6
default no
prompt "enable ipv6 (with ipv4) support"
help
Enable this if you require ipv6 support. This also requires ipv6
support in libpcap (already done if you check this entry)
+
+endif