OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [ecos-2.0/] [packages/] [services/] [compress/] [zlib/] [v2_0/] [cdl/] [compress_zlib.cdl] - Blame information for rev 1254

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1254 phoenix
# ====================================================================
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       infblock.c infcodes.c inffast.c inflate.c
62
    compile       inftrees.c infutil.c adler32.c
63
    compile       zutil.c deflate.c trees.c compress.c uncompr.c
64
 
65
    cdl_interface CYGINT_COMPRESS_ZLIB_LOCAL_ALLOC {
66
        display "Override memory allocation routines."
67
    }
68
 
69
    cdl_option CYGSEM_COMPRESS_ZLIB_NEEDS_MALLOC {
70
        display        "Does this library need malloc?"
71
        flavor         bool
72
        active_if      { CYGINT_COMPRESS_ZLIB_LOCAL_ALLOC == 0 }
73
        requires       CYGPKG_MEMALLOC
74
        no_define
75
        default_value  1
76
        description    "
77
           This pseudo-option will force the memalloc library to be
78
           required iff the application does not provide it's own
79
           infrastructure."
80
    }
81
 
82
 
83
# ====================================================================
84
 
85
    cdl_component CYGPKG_COMPRESS_ZLIB_OPTIONS {
86
        display "Common memory allocator package build options"
87
        flavor  none
88
        no_define
89
        description   "
90
            Package specific build options including control over
91
            compiler flags used only in building this package,
92
            and details of which tests are built."
93
 
94
        cdl_option CYGPKG_COMPRESS_ZLIB_CFLAGS_ADD {
95
            display "Additional compiler flags"
96
            flavor  data
97
            no_define
98
            default_value { "-D__ECOS__ -DNO_ERRNO_H" }
99
            description   "
100
                This option modifies the set of compiler flags for
101
                building this package. These flags are used in addition
102
                to the set of global flags."
103
        }
104
 
105
        cdl_option CYGPKG_COMPRESS_ZLIB_CFLAGS_REMOVE {
106
            display "Suppressed compiler flags"
107
            flavor  data
108
            no_define
109
            default_value { "-Wstrict-prototypes" }
110
            description   "
111
                This option modifies the set of compiler flags for
112
                building this package. These flags are removed from
113
                the set of global flags if present."
114
        }
115
 
116
        cdl_option CYGPKG_COMPRESS_ZLIB_LDFLAGS_ADD {
117
            display "Additional compiler flags"
118
            flavor  data
119
            no_define
120
            default_value { "" }
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_LDFLAGS_REMOVE {
128
            display "Suppressed compiler flags"
129
            flavor  data
130
            no_define
131
            default_value { "" }
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
    }
139
 
140
    cdl_option CYGPKG_COMPRESS_ZLIB_TESTS {
141
        display "zlib tests"
142
        flavor  data
143
        no_define
144
        calculated { "tests/zlib1.c tests/zlib2.c" }
145
    }
146
}
147
 
148
# ====================================================================
149
# EOF compress_zlib.cdl

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.