summaryrefslogtreecommitdiff
path: root/package/nmap/Config.in
blob: 56a561ec75d6788a20f2c611ae406fae5a2f4679 (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
config ADK_PACKAGE_NMAP
	prompt "nmap.............................. Network exploration and/or security auditing utility"
	tristate
	default n
	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 || ADK_TARGET_LIB_EGLIBC
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