let ipkg fail when a package file to be installed is not found
[openwrt/staging/wigyori.git] / openwrt / package / net-snmp / Config.in
1 menu "net-snmp.......................... Open source SNMP (Simple Network Management Protocol) implementation"
2
3 config BR2_COMPILE_NET_SNMP
4 tristate
5 default n
6 depends BR2_PACKAGE_LIBNETSNMP || BR2_PACKAGE_SNMPD_STATIC
7
8 config BR2_PACKAGE_LIBNETSNMP
9 prompt "libnetsnmp........................ SNMP shared libraries"
10 tristate
11 default m if CONFIG_DEVEL
12 select BR2_COMPILE_NET_SNMP
13 select BR2_PACKAGE_LIBELF
14 help
15 Simple Network Management Protocol (SNMP) is a widely used
16 protocol for monitoring the health and welfare of network
17 equipment (eg. routers), computer equipment and even devices
18 like UPSs. Net-SNMP is a suite of applications used to implement
19 SNMP v1, SNMP v2c and SNMP v3 using both IPv4 and IPv6.
20
21 http://www.net-snmp.org/
22
23 This package contains shared libraries, needed by other programs.
24
25 config BR2_PACKAGE_SNMP_UTILS
26 prompt "snmp-utils...................... SNMP client utilities"
27 tristate
28 default m if CONFIG_DEVEL
29 depends BR2_PACKAGE_LIBNETSNMP
30 help
31 Simple Network Management Protocol (SNMP) is a widely used
32 protocol for monitoring the health and welfare of network
33 equipment (eg. routers), computer equipment and even devices
34 like UPSs. Net-SNMP is a suite of applications used to implement
35 SNMP v1, SNMP v2c and SNMP v3 using both IPv4 and IPv6.
36
37 http://www.net-snmp.org/
38
39 This package contains the SNMP client utilities.
40
41 config BR2_PACKAGE_SNMPD
42 prompt "snmpd............................. SNMP agent"
43 tristate
44 default m if CONFIG_DEVEL
45 select BR2_COMPILE_NET_SNMP
46 select BR2_PACKAGE_LIBNETSNMP
47 help
48 Simple Network Management Protocol (SNMP) is a widely used
49 protocol for monitoring the health and welfare of network
50 equipment (eg. routers), computer equipment and even devices
51 like UPSs. Net-SNMP is a suite of applications used to implement
52 SNMP v1, SNMP v2c and SNMP v3 using both IPv4 and IPv6.
53
54 http://www.net-snmp.org/
55
56 This package contains the SNMP agent, dynamically linked.
57
58 config BR2_PACKAGE_SNMPD_STATIC
59 prompt "snmpd-static...................... SNMP agent (statically linked)"
60 tristate
61 default m if CONFIG_DEVEL
62 select BR2_COMPILE_NET_SNMP
63 select BR2_PACKAGE_LIBELF
64 help
65 Simple Network Management Protocol (SNMP) is a widely used
66 protocol for monitoring the health and welfare of network
67 equipment (eg. routers), computer equipment and even devices
68 like UPSs. Net-SNMP is a suite of applications used to implement
69 SNMP v1, SNMP v2c and SNMP v3 using both IPv4 and IPv6.
70
71 http://www.net-snmp.org/
72
73 This package contains the SNMP agent, statically linked.
74
75 endmenu