Changeset 528

Show
Ignore:
Timestamp:
08/18/06 21:13:14 (2 years ago)
Author:
markus
Message:

fixed to match common menuconfig style

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/freewrt/package/net-snmp/Config.in

    r360 r528  
    1 menu "net-snmp.......................... Open source SNMP (Simple Network Management Protocol) implementation" 
    21 
    32config FWRT_COMPILE_NET_SNMP 
    4         tristate 
     3        bool 
    54        default n 
    6         depends FWRT_PACKAGE_LIBNETSNMP || FWRT_PACKAGE_SNMPD_STATIC 
     5 
     6config FWRT_DUMMY_NET_SNMP 
     7        bool 
     8        prompt "net-snmp.......................... SNMP Server and Cliet packages" 
    79 
    810config FWRT_PACKAGE_LIBNETSNMP 
    9         prompt "libnetsnmp........................ SNMP shared libraries" 
     11        prompt "libnetsnmp...................... SNMP shared libraries" 
    1012        tristate 
    1113        default m if CONFIG_DEVEL 
     14        depends FWRT_DUMMY_NET_SNMP 
    1215        select FWRT_COMPILE_NET_SNMP 
    1316        select FWRT_PACKAGE_LIBELF 
     
    2427 
    2528config FWRT_PACKAGE_SNMP_UTILS 
    26         prompt   "snmp-utils...................... SNMP client utilities" 
     29        prompt "snmp-utils...................... SNMP client utilities" 
    2730        tristate 
    2831        default m if CONFIG_DEVEL 
    29         depends FWRT_PACKAGE_LIBNETSNMP 
     32        depends FWRT_DUMMY_NET_SNMP 
     33        select FWRT_PACKAGE_LIBNETSNMP 
    3034        help 
    3135          Simple Network Management Protocol (SNMP) is a widely used  
     
    4044 
    4145config FWRT_PACKAGE_SNMPD 
    42         prompt "snmpd............................. SNMP agent" 
     46        prompt "snmpd........................... SNMP agent" 
    4347        tristate 
    4448        default m if CONFIG_DEVEL 
    45         select FWRT_COMPILE_NET_SNMP 
     49        depends FWRT_DUMMY_NET_SNMP 
    4650        select FWRT_PACKAGE_LIBNETSNMP 
    4751        help 
     
    5761 
    5862config FWRT_PACKAGE_SNMPD_STATIC 
    59         prompt "snmpd-static...................... SNMP agent (statically linked)" 
     63        prompt "snmpd-static.................... SNMP agent (statically linked)" 
    6064        tristate 
    6165        default m if CONFIG_DEVEL 
     66        depends FWRT_DUMMY_NET_SNMP 
    6267        select FWRT_COMPILE_NET_SNMP 
    6368        select FWRT_PACKAGE_LIBELF 
     
    7378          This package contains the SNMP agent, statically linked. 
    7479 
    75 endmenu