blob: f97017eeb4da6ef3795ece8973a196f969b1ef42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
config ADK_PACKAGE_NMAP
prompt "nmap.............................. Network exploration and/or security auditing utility"
tristate
default n
depends on ADK_CXX
select ADK_PACKAGE_LIBDNET
select ADK_PACKAGE_LIBPCAP
select ADK_PACKAGE_LIBPCRE
help
A free open source utility for network exploration or security auditing.
http://www.insecure.org/nmap/
choice
prompt "C++ library to use"
depends on ADK_PACKAGE_NMAP
default ADK_COMPILE_NMAP_WITH_STDCXX if ADK_TARGET_LIB_GLIBC
default ADK_COMPILE_NMAP_WITH_UCLIBCXX if ADK_TARGET_LIB_UCLIBC
config ADK_COMPILE_NMAP_WITH_STDCXX
bool "Standard C++ library"
select ADK_PACKAGE_LIBSTDCXX
help
config ADK_COMPILE_NMAP_WITH_UCLIBCXX
bool "Embedded uClibc++ library"
select ADK_PACKAGE_UCLIBCXX
help
endchoice
|