]> git.karo-electronics.de Git - karo-tx-redboot.git/blob - packages/services/compress/zlib/v2_0/cdl/compress_zlib.cdl
53939433dbe09ca7f50d911142b5b519ab57533d
[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
91 # ====================================================================
92
93     cdl_component CYGPKG_COMPRESS_ZLIB_OPTIONS {
94         display "Zlib compress and decompress package build options"
95         flavor  none
96         no_define
97         description   "
98             Package specific build options including control over
99             compiler flags used only in building this package,
100             and details of which tests are built."
101
102         cdl_option CYGPKG_COMPRESS_ZLIB_CFLAGS_ADD {
103             display "Additional compiler flags"
104             flavor  data
105             no_define
106             default_value { "-D__ECOS__ -DNO_ERRNO_H" }
107             description   "
108                 This option modifies the set of compiler flags for
109                 building this package. These flags are used in addition
110                 to the set of global flags."
111         }
112
113         cdl_option CYGPKG_COMPRESS_ZLIB_CFLAGS_REMOVE {
114             display "Suppressed compiler flags"
115             flavor  data
116             no_define
117             default_value { "-Wstrict-prototypes" }
118             description   "
119                 This option modifies the set of compiler flags for
120                 building this package. These flags are removed from
121                 the set of global flags if present."
122         }
123
124         cdl_option CYGPKG_COMPRESS_ZLIB_LDFLAGS_ADD {
125             display "Additional compiler flags"
126             flavor  data
127             no_define
128             default_value { "" }
129             description   "
130                 This option modifies the set of compiler flags for
131                 building this package. These flags are used in addition
132                 to the set of global flags."
133         }
134
135         cdl_option CYGPKG_COMPRESS_ZLIB_LDFLAGS_REMOVE {
136             display "Suppressed compiler flags"
137             flavor  data
138             no_define
139             default_value { "" }
140             description   "
141                 This option modifies the set of compiler flags for
142                 building this package. These flags are removed from
143                 the set of global flags if present."
144         }
145         
146     }
147
148     cdl_option CYGPKG_COMPRESS_ZLIB_TESTS {
149         display "zlib tests"
150         flavor  data
151         no_define
152         calculated { "tests/zlib1.c tests/zlib2.c" }
153     }
154 }
155
156 # ====================================================================
157 # EOF compress_zlib.cdl