source: rtems/cpukit/zlib/zconf.h @ 6ce2a66

4.104.114.84.95
Last change on this file since 6ce2a66 was 8c3a1cf1, checked in by Ralf Corsepius <ralf.corsepius@…>, on 10/30/05 at 03:58:45

2005-10-30 Ralf Corsepius <ralf.corsepius@…>

  • zconf.h: Hard-code using unistd.h. Hard-code Z_PREFIX.
  • Property mode set to 100644
File size: 9.5 KB
Line 
1/* zconf.h -- configuration of the zlib compression library
2 * Copyright (C) 1995-2004 Jean-loup Gailly.
3 * For conditions of distribution and use, see copyright notice in zlib.h
4 */
5
6/* $Id$ */
7
8#ifndef ZCONF_H
9#define ZCONF_H
10
11#define Z_PREFIX 1
12
13/*
14 * If you *really* need a unique prefix for all types and library functions,
15 * compile with -DZ_PREFIX. The "standard" zlib should be compiled without it.
16 */
17#ifdef Z_PREFIX
18#  define deflateInit_          z_deflateInit_
19#  define deflate               z_deflate
20#  define deflateEnd            z_deflateEnd
21#  define inflateInit_          z_inflateInit_
22#  define inflate               z_inflate
23#  define inflateEnd            z_inflateEnd
24#  define deflateInit2_         z_deflateInit2_
25#  define deflateSetDictionary  z_deflateSetDictionary
26#  define deflateCopy           z_deflateCopy
27#  define deflateReset          z_deflateReset
28#  define deflateParams         z_deflateParams
29#  define deflateBound          z_deflateBound
30#  define deflatePrime          z_deflatePrime
31#  define inflateInit2_         z_inflateInit2_
32#  define inflateSetDictionary  z_inflateSetDictionary
33#  define inflateSync           z_inflateSync
34#  define inflateSyncPoint      z_inflateSyncPoint
35#  define inflateCopy           z_inflateCopy
36#  define inflateReset          z_inflateReset
37#  define inflateBack           z_inflateBack
38#  define inflateBackEnd        z_inflateBackEnd
39#  define compress              z_compress
40#  define compress2             z_compress2
41#  define compressBound         z_compressBound
42#  define uncompress            z_uncompress
43#  define adler32               z_adler32
44#  define crc32                 z_crc32
45#  define get_crc_table         z_get_crc_table
46#  define zError                z_zError
47
48#  define alloc_func            z_alloc_func
49#  define free_func             z_free_func
50#  define in_func               z_in_func
51#  define out_func              z_out_func
52#  define Byte                  z_Byte
53#  define uInt                  z_uInt
54#  define uLong                 z_uLong
55#  define Bytef                 z_Bytef
56#  define charf                 z_charf
57#  define intf                  z_intf
58#  define uIntf                 z_uIntf
59#  define uLongf                z_uLongf
60#  define voidpf                z_voidpf
61#  define voidp                 z_voidp
62#endif
63
64#if defined(__MSDOS__) && !defined(MSDOS)
65#  define MSDOS
66#endif
67#if (defined(OS_2) || defined(__OS2__)) && !defined(OS2)
68#  define OS2
69#endif
70#if defined(_WINDOWS) && !defined(WINDOWS)
71#  define WINDOWS
72#endif
73#if (defined(_WIN32) || defined(__WIN32__)) && !defined(WIN32)
74#  define WIN32
75#endif
76#if (defined(MSDOS) || defined(OS2) || defined(WINDOWS)) && !defined(WIN32)
77#  if !defined(__GNUC__) && !defined(__FLAT__) && !defined(__386__)
78#    ifndef SYS16BIT
79#      define SYS16BIT
80#    endif
81#  endif
82#endif
83
84/*
85 * Compile with -DMAXSEG_64K if the alloc function cannot allocate more
86 * than 64k bytes at a time (needed on systems with 16-bit int).
87 */
88#ifdef SYS16BIT
89#  define MAXSEG_64K
90#endif
91#ifdef MSDOS
92#  define UNALIGNED_OK
93#endif
94
95#ifdef __STDC_VERSION__
96#  ifndef STDC
97#    define STDC
98#  endif
99#  if __STDC_VERSION__ >= 199901L
100#    ifndef STDC99
101#      define STDC99
102#    endif
103#  endif
104#endif
105#if !defined(STDC) && (defined(__STDC__) || defined(__cplusplus))
106#  define STDC
107#endif
108#if !defined(STDC) && (defined(__GNUC__) || defined(__BORLANDC__))
109#  define STDC
110#endif
111#if !defined(STDC) && (defined(MSDOS) || defined(WINDOWS) || defined(WIN32))
112#  define STDC
113#endif
114#if !defined(STDC) && (defined(OS2) || defined(__HOS_AIX__))
115#  define STDC
116#endif
117
118#if defined(__OS400__) && !defined(STDC)    /* iSeries (formerly AS/400). */
119#  define STDC
120#endif
121
122#ifndef STDC
123#  ifndef const /* cannot use !defined(STDC) && !defined(const) on Mac */
124#    define const       /* note: need a more gentle solution here */
125#  endif
126#endif
127
128/* Some Mac compilers merge all .h files incorrectly: */
129#if defined(__MWERKS__)||defined(applec)||defined(THINK_C)||defined(__SC__)
130#  define NO_DUMMY_DECL
131#endif
132
133/* Maximum value for memLevel in deflateInit2 */
134#ifndef MAX_MEM_LEVEL
135#  ifdef MAXSEG_64K
136#    define MAX_MEM_LEVEL 8
137#  else
138#    define MAX_MEM_LEVEL 9
139#  endif
140#endif
141
142/* Maximum value for windowBits in deflateInit2 and inflateInit2.
143 * WARNING: reducing MAX_WBITS makes minigzip unable to extract .gz files
144 * created by gzip. (Files created by minigzip can still be extracted by
145 * gzip.)
146 */
147#ifndef MAX_WBITS
148#  define MAX_WBITS   15 /* 32K LZ77 window */
149#endif
150
151/* The memory requirements for deflate are (in bytes):
152            (1 << (windowBits+2)) +  (1 << (memLevel+9))
153 that is: 128K for windowBits=15  +  128K for memLevel = 8  (default values)
154 plus a few kilobytes for small objects. For example, if you want to reduce
155 the default memory requirements from 256K to 128K, compile with
156     make CFLAGS="-O -DMAX_WBITS=14 -DMAX_MEM_LEVEL=7"
157 Of course this will generally degrade compression (there's no free lunch).
158
159   The memory requirements for inflate are (in bytes) 1 << windowBits
160 that is, 32K for windowBits=15 (default value) plus a few kilobytes
161 for small objects.
162*/
163
164                        /* Type declarations */
165
166#ifndef OF /* function prototypes */
167#  ifdef STDC
168#    define OF(args)  args
169#  else
170#    define OF(args)  ()
171#  endif
172#endif
173
174/* The following definitions for FAR are needed only for MSDOS mixed
175 * model programming (small or medium model with some far allocations).
176 * This was tested only with MSC; for other MSDOS compilers you may have
177 * to define NO_MEMCPY in zutil.h.  If you don't need the mixed model,
178 * just define FAR to be empty.
179 */
180#ifdef SYS16BIT
181#  if defined(M_I86SM) || defined(M_I86MM)
182     /* MSC small or medium model */
183#    define SMALL_MEDIUM
184#    ifdef _MSC_VER
185#      define FAR _far
186#    else
187#      define FAR far
188#    endif
189#  endif
190#  if (defined(__SMALL__) || defined(__MEDIUM__))
191     /* Turbo C small or medium model */
192#    define SMALL_MEDIUM
193#    ifdef __BORLANDC__
194#      define FAR _far
195#    else
196#      define FAR far
197#    endif
198#  endif
199#endif
200
201#if defined(WINDOWS) || defined(WIN32)
202   /* If building or using zlib as a DLL, define ZLIB_DLL.
203    * This is not mandatory, but it offers a little performance increase.
204    */
205#  ifdef ZLIB_DLL
206#    if defined(WIN32) && (!defined(__BORLANDC__) || (__BORLANDC__ >= 0x500))
207#      ifdef ZLIB_INTERNAL
208#        define ZEXTERN extern __declspec(dllexport)
209#      else
210#        define ZEXTERN extern __declspec(dllimport)
211#      endif
212#    endif
213#  endif  /* ZLIB_DLL */
214   /* If building or using zlib with the WINAPI/WINAPIV calling convention,
215    * define ZLIB_WINAPI.
216    * Caution: the standard ZLIB1.DLL is NOT compiled using ZLIB_WINAPI.
217    */
218#  ifdef ZLIB_WINAPI
219#    ifdef FAR
220#      undef FAR
221#    endif
222#    include <windows.h>
223     /* No need for _export, use ZLIB.DEF instead. */
224     /* For complete Windows compatibility, use WINAPI, not __stdcall. */
225#    define ZEXPORT WINAPI
226#    ifdef WIN32
227#      define ZEXPORTVA WINAPIV
228#    else
229#      define ZEXPORTVA FAR CDECL
230#    endif
231#  endif
232#endif
233
234#if defined (__BEOS__)
235#  ifdef ZLIB_DLL
236#    ifdef ZLIB_INTERNAL
237#      define ZEXPORT   __declspec(dllexport)
238#      define ZEXPORTVA __declspec(dllexport)
239#    else
240#      define ZEXPORT   __declspec(dllimport)
241#      define ZEXPORTVA __declspec(dllimport)
242#    endif
243#  endif
244#endif
245
246#ifndef ZEXTERN
247#  define ZEXTERN extern
248#endif
249#ifndef ZEXPORT
250#  define ZEXPORT
251#endif
252#ifndef ZEXPORTVA
253#  define ZEXPORTVA
254#endif
255
256#ifndef FAR
257#  define FAR
258#endif
259
260#if defined(__rtems__)
261#include <rtems/stdint.h>
262
263typedef uint_least8_t   Byte;
264typedef uint_least16_t  uInt;
265typedef uint_least32_t  uLong;
266
267#else
268#if !defined(__MACTYPES__)
269typedef unsigned char  Byte;  /* 8 bits */
270#endif
271typedef unsigned int   uInt;  /* 16 bits or more */
272typedef unsigned long  uLong; /* 32 bits or more */
273#endif
274
275#ifdef SMALL_MEDIUM
276   /* Borland C/C++ and some old MSC versions ignore FAR inside typedef */
277#  define Bytef Byte FAR
278#else
279   typedef Byte  FAR Bytef;
280#endif
281typedef char  FAR charf;
282typedef int   FAR intf;
283typedef uInt  FAR uIntf;
284typedef uLong FAR uLongf;
285
286#ifdef STDC
287   typedef void const *voidpc;
288   typedef void FAR   *voidpf;
289   typedef void       *voidp;
290#else
291   typedef Byte const *voidpc;
292   typedef Byte FAR   *voidpf;
293   typedef Byte       *voidp;
294#endif
295
296#if 1           /* HAVE_UNISTD_H -- this line is updated by ./configure */
297#  include <sys/types.h> /* for off_t */
298#  include <unistd.h>    /* for SEEK_* and off_t */
299#  ifdef VMS
300#    include <unixio.h>   /* for off_t */
301#  endif
302#  define z_off_t off_t
303#endif
304#ifndef SEEK_SET
305#  define SEEK_SET        0       /* Seek from beginning of file.  */
306#  define SEEK_CUR        1       /* Seek from current position.  */
307#  define SEEK_END        2       /* Set file pointer to EOF plus "offset" */
308#endif
309#ifndef z_off_t
310#  define z_off_t long
311#endif
312
313#if defined(__OS400__)
314#  define NO_vsnprintf
315#endif
316
317#if defined(__MVS__)
318#  define NO_vsnprintf
319#  ifdef FAR
320#    undef FAR
321#  endif
322#endif
323
324/* MVS linker does not support external names larger than 8 bytes */
325#if defined(__MVS__)
326#   pragma map(deflateInit_,"DEIN")
327#   pragma map(deflateInit2_,"DEIN2")
328#   pragma map(deflateEnd,"DEEND")
329#   pragma map(deflateBound,"DEBND")
330#   pragma map(inflateInit_,"ININ")
331#   pragma map(inflateInit2_,"ININ2")
332#   pragma map(inflateEnd,"INEND")
333#   pragma map(inflateSync,"INSY")
334#   pragma map(inflateSetDictionary,"INSEDI")
335#   pragma map(compressBound,"CMBND")
336#   pragma map(inflate_table,"INTABL")
337#   pragma map(inflate_fast,"INFA")
338#   pragma map(inflate_copyright,"INCOPY")
339#endif
340
341#endif /* ZCONF_H */
Note: See TracBrowser for help on using the repository browser.