]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/services/compress/zlib/v2_0/cdl/compress_zlib.cdl
unified MX27, MX25, MX37 trees
[karo-tx-redboot.git] / packages / services / compress / zlib / v2_0 / cdl / compress_zlib.cdl
1 # ====================================================================
2 #
3 #      compress_zlib.cdl
4 #
5 #      Zlib compress/decompress 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):      jskov
44 # Contributors:
45 # Date:           2001-03-06
46 #
47 #####DESCRIPTIONEND####
48 #
49 # ====================================================================
50
51 cdl_package CYGPKG_COMPRESS_ZLIB {
52     display       "Zlib compress and decompress package"
53     description   "
54                   This package provides support for compression and
55                   decompression."
56     include_dir   cyg/compress
57
58     requires      CYGPKG_ISOINFRA
59     requires      CYGPKG_CRC
60
61     compile       adler32.c compress.c uncompr.c zutil.c trees.c
62     compile       deflate.c infback.c inffast.c inflate.c inftrees.c
63
64     cdl_interface CYGINT_COMPRESS_ZLIB_LOCAL_ALLOC {
65         display "Override memory allocation routines."
66     }
67
68     cdl_option  CYGSEM_COMPRESS_ZLIB_DEFLATE_MAKES_GZIP {
69         display        "Should deflate() produce 'gzip' compatible output?"
70         flavor         bool
71         default_value  1
72         description "
73           If this option is set then the output of calling deflate()
74           will be wrapped up as a 'gzip' compatible file."
75     }
76
77     cdl_option CYGSEM_COMPRESS_ZLIB_NEEDS_MALLOC {
78         display        "Does this library need malloc?"
79         flavor         bool
80         active_if      { CYGINT_COMPRESS_ZLIB_LOCAL_ALLOC == 0 }
81         requires       CYGPKG_MEMALLOC
82         no_define
83         default_value  1
84         description    "
85            This pseudo-option will force the memalloc library to be
86            required iff the application does not provide it's own
87            infrastructure."
88     }
89
90     cdl_option CYGFUN_COMPRESS_ZLIB_GZIO {
91         display        "Include stdio-like utility functions"
92         flavor         bool
93         requires       CYGINT_ISO_STDIO_FILEPOS
94         requires       CYGINT_ISO_STRING_STRFUNCS
95         requires       CYGINT_ISO_STDIO_FORMATTED_IO
96         requires       CYGINT_ISO_STDIO_FILEACCESS
97         default_value  { CYGPKG_LIBC_STDIO_OPEN ? 1 : 0 }
98         compile        gzio.c
99         description    "
100            This option enables the stdio-like zlib utility functions
101            (gzread/gzwrite and friends) provided in gzio.c."
102     }
103
104
105 # ====================================================================
106
107     cdl_component CYGPKG_COMPRESS_ZLIB_OPTIONS {
108         display "Zlib compress and decompress package build options"
109         flavor  none
110         no_define
111         description   "
112             Package specific build options including control over
113             compiler flags used only in building this package,
114             and details of which tests are built."
115
116         cdl_option CYGPKG_COMPRESS_ZLIB_CFLAGS_ADD {
117             display "Additional compiler flags"
118             flavor  data
119             no_define
120             default_value { "-D__ECOS__ -DNO_ERRNO_H" }
121             description   "
122                 This option modifies the set of compiler flags for
123                 building this package. These flags are used in addition
124                 to the set of global flags."
125         }
126
127         cdl_option CYGPKG_COMPRESS_ZLIB_CFLAGS_REMOVE {
128             display "Suppressed compiler flags"
129             flavor  data
130             no_define
131             default_value { "-Wstrict-prototypes" }
132             description   "
133                 This option modifies the set of compiler flags for
134                 building this package. These flags are removed from
135                 the set of global flags if present."
136         }
137
138         cdl_option CYGPKG_COMPRESS_ZLIB_LDFLAGS_ADD {
139             display "Additional compiler flags"
140             flavor  data
141             no_define
142             default_value { "" }
143             description   "
144                 This option modifies the set of compiler flags for
145                 building this package. These flags are used in addition
146                 to the set of global flags."
147         }
148
149         cdl_option CYGPKG_COMPRESS_ZLIB_LDFLAGS_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 this package. These flags are removed from
157                 the set of global flags if present."
158         }
159         
160     }
161
162     cdl_option CYGPKG_COMPRESS_ZLIB_TESTS {
163         display "zlib tests"
164         flavor  data
165         no_define
166         calculated { "tests/zlib1.c tests/zlib2.c" }
167     }
168 }
169
170 # ====================================================================
171 # EOF compress_zlib.cdl