]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/net/snmp/lib/v2_0/cdl/snmplib.cdl
unified MX27, MX25, MX37 trees
[karo-tx-redboot.git] / packages / net / snmp / lib / v2_0 / cdl / snmplib.cdl
1 # ====================================================================
2 #
3 #      snmplib.cdl
4 #
5 #      SNMP library configuration data
6 #
7 # ====================================================================
8 #####ECOSGPLCOPYRIGHTBEGIN####
9 ## -------------------------------------------
10 ## This file is part of eCos, the Embedded Configurable Operating System.
11 ## Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
12 ##
13 ## eCos is free software; you can redistribute it and/or modify it under
14 ## the terms of the GNU General Public License as published by the Free
15 ## Software Foundation; either version 2 or (at your option) any later version.
16 ##
17 ## eCos is distributed in the hope that it will be useful, but WITHOUT ANY
18 ## WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 ## FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
20 ## for more details.
21 ##
22 ## You should have received a copy of the GNU General Public License along
23 ## with eCos; if not, write to the Free Software Foundation, Inc.,
24 ## 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25 ##
26 ## As a special exception, if other files instantiate templates or use macros
27 ## or inline functions from this file, or you compile this file and link it
28 ## with other works to produce a work based on this file, this file does not
29 ## by itself cause the resulting work to be covered by the GNU General Public
30 ## License. However the source code for this file must still be made available
31 ## in accordance with section (3) of the GNU General Public License.
32 ##
33 ## This exception does not invalidate any other reasons why a work based on
34 ## this file might be covered by the GNU General Public License.
35 ##
36 ## Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
37 ## at http://sources.redhat.com/ecos/ecos-license/
38 ## -------------------------------------------
39 #####ECOSGPLCOPYRIGHTEND####
40 # ====================================================================
41 ######DESCRIPTIONBEGIN####
42 #
43 # Author(s):      hmt
44 # Original data:  hmt
45 # Contributors:   gthomas
46 # Date:           2000-05-30
47 #
48 #####DESCRIPTIONEND####
49 #
50 # ====================================================================
51
52 cdl_package CYGPKG_SNMPLIB {
53     display       "SNMP library"
54     parent        CYGPKG_NET
55     doc           ref/net-snmp-ecos-port.html
56     include_dir   ucd-snmp
57     requires      CYGPKG_IO
58     requires      { 0 != CYGINT_ISO_STRING_STRFUNCS }
59     requires      { 0 != CYGINT_ISO_STRING_MEMFUNCS }
60     requires      { 0 != CYGINT_ISO_STDLIB_STRCONV }
61     requires      { 0 != CYGINT_ISO_STDIO_FORMATTED_IO }
62     requires      { 0 != CYGINT_ISO_STRING_STRFUNCS }
63     requires      { 0 != CYGINT_ISO_MALLOC }
64     requires      { 0 != CYGINT_ISO_ERRNO }
65     requires      { 0 != CYGINT_ISO_ERRNO_CODES }
66     requires      CYGPKG_NET
67     requires      CYGPKG_POSIX_TIMERS
68     description   "SNMP protocol support library based on the UCD-SNMP project."
69
70     compile                                     \
71                 asn1.c                          \
72                 callback.c                      \
73                 default_store.c                 \
74                 int64.c                         \
75                 keytools.c                      \
76                 lcd_time.c                      \
77                 md5.c                           \
78                 mib.c                           \
79                 mt_support.c                    \
80                 parse.c                         \
81                 read_config.c                   \
82                 scapi.c                         \
83                 snmp.c                          \
84                 snmp_alarm.c                    \
85                 snmp_api.c                      \
86                 snmp_auth.c                     \
87                 snmp_client.c                   \
88                 snmp_debug.c                    \
89                 snmp_logging.c                  \
90                 snmpusm.c                       \
91                 snmpv3.c                        \
92                 system.c                        \
93                 tools.c                         \
94                 vacm.c
95
96
97     cdl_option CYGDBG_NET_SNMPLIB_DEBUG {
98         display        "Enable SNMP debug printout"
99         flavor         bool
100         default_value  0
101         description "
102             This option enables the debugging printout facilities of the
103             UCD SNMP module, controlled by the global variable 'dodebug'.
104             Setting this variable produces lots of printout for SNMP agent
105             activity, often enough to make your SNMP client time out."
106     }
107
108     cdl_component CYGPKG_SNMPLIB_FILESYSTEM_SUPPORT {
109       display       "SNMP file-system options"
110       description "
111           This option enables file-system dependent functionality, 
112           eg snmp.conf"
113
114       active_if     CYGPKG_IO_FILEIO 
115       active_if     { CYGINT_IO_FILEIO_FS > 0 }
116
117       flavor        bool
118       default_value 1
119
120       cdl_option CYGPKG_SNMPLIB_PERSISTENT_FILESYSTEM {
121         display "Persistent filesystem support"
122         flavor  bool
123         default_value 0
124         description "
125             This option enables functions that would require a
126             persistent file-system to be available. This
127             would be required if a system needs to save backups
128             of the snmpd.conf files."
129       }
130     }
131
132     cdl_component CYGPKG_SNMPLIB_OPTIONS {
133         display "SNMP library build options"
134         flavor  none
135         no_define
136
137         cdl_option CYGPKG_SNMPLIB_CFLAGS_ADD {
138             display "Additional compiler flags"
139             flavor  data
140             no_define
141             default_value { "-D_KERNEL -D__ECOS -I$(PREFIX)/include/ucd-snmp" }
142             description   "
143                 This option modifies the set of compiler flags for
144                 building the SNMP library package.
145                 These flags are used in addition
146                 to the set of global flags."
147         }
148
149         cdl_option CYGPKG_SNMPLIB_CFLAGS_REMOVE {
150             display "Suppressed compiler flags"
151             flavor  data
152             no_define
153             default_value { "" }
154             description   "
155                 This option modifies the set of compiler flags for
156                 building the SNMP library package. These flags are removed from
157                 the set of global flags if present."
158         }
159     }
160 }
161
162 # EOF snmplib.cdl