hplip: needs dynamic library
[buildroot-gz.git] / package / netsnmp / Config.in
blob57cc6b93fd25ad7d0a1a156fc4bba8482473826b
1 config BR2_PACKAGE_NETSNMP
2         bool "netsnmp"
3         depends on BR2_USE_MMU # fork()
4         help
5           Suite of applications used to implement SNMP v1, SNMP v2c, and
6           SNMP v3 using both IPv4 and IPv6.
8           http://net-snmp.sourceforge.net/
10 if BR2_PACKAGE_NETSNMP
12 config BR2_PACKAGE_NETSNMP_SERVER
13         bool "server"
14         default y
15         help
16           The snmpd server.
18 config BR2_PACKAGE_NETSNMP_CLIENTS
19         bool "clients"
20         default y
21         help
22           The net-snmp clients (snmpget, snmpwalk, etc).
24 config BR2_PACKAGE_NETSNMP_ENABLE_MIBS
25         bool "Install MIB files on target and enable MIB loading code"
26         default y
27         help
28           The net-snmp package contains a selection of MIB files.
29           Say yes if you want those MIB files installed on the target
30           and enable the code that parses the MIB files.
32 config BR2_PACKAGE_NETSNMP_WITH_MIB_MODULES
33         string "Build with these MIB modules"
34         default "host ucd-snmp/dlmod agentx" if !BR2_STATIC_LIBS
35         default "host agentx" if BR2_STATIC_LIBS
36         help
37           Specify which MIB modules to include.
39 config BR2_PACKAGE_NETSNMP_WITHOUT_MIB_MODULES
40         string "Build without these MIB modules"
41         default "disman/event disman/schedule utilities"
42         help
43           Specify which MIB modules to exclude.
45 config BR2_PACKAGE_NETSNMP_ENABLE_DEBUGGING
46         bool "Enable debugging code"
47         help
48           By default net-snmp is compiled without debugging support
49           (--disable-debugging). Enable this options if you need debugging
50           support, including the ability to log with DEBUGMSG(),
51           DEBUGMSGTL() and companion macros.
53 config BR2_PACKAGE_NETSNMP_OPENSSL_INTERNAL
54         bool "Enable minimal internal OpenSSL code"
55         depends on !BR2_PACKAGE_OPENSSL
56         help
57           Enable a minimal internal copy of OpenSSL usable for USM
58           security. It will not enable the usage of SNMP over (D)TLS.
60 endif