~rdoering/ubuntu/intrepid/erlang/fix-535090

« back to all changes in this revision

Viewing changes to erts/emulator/zlib/zconf.h

  • Committer: Bazaar Package Importer
  • Author(s): Soren Hansen
  • Date: 2007-05-01 16:57:10 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20070501165710-2sapk0hp2gf3o0ip
Tags: 1:11.b.4-2ubuntu1
* Merge with Debian Unstable. Remaining changes:
  - Add -fno-stack-protector to fix broken crypto_drv.
* DebianMaintainerField update.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* zconf.h -- configuration of the zlib compression library
2
 
 * Copyright (C) 1995-1998 Jean-loup Gailly.
3
 
 * For conditions of distribution and use, see copyright notice in zlib.h 
 
2
 * Copyright (C) 1995-2005 Jean-loup Gailly.
 
3
 * For conditions of distribution and use, see copyright notice in zlib.h
4
4
 */
5
5
 
6
6
/* @(#) $Id$ */
7
7
 
8
 
#ifndef _ZCONF_H
9
 
#define _ZCONF_H
 
8
#ifndef ZCONF_H
 
9
#define ZCONF_H
10
10
 
11
11
/*
12
12
 * If you *really* need a unique prefix for all types and library functions,
13
13
 * compile with -DZ_PREFIX. The "standard" zlib should be compiled without it.
14
14
 */
15
15
#ifdef Z_PREFIX
16
 
#  define deflateInit_  z_deflateInit_
17
 
#  define deflate       z_deflate
18
 
#  define deflateEnd    z_deflateEnd
19
 
#  define inflateInit_  z_inflateInit_
20
 
#  define inflate       z_inflate
21
 
#  define inflateEnd    z_inflateEnd
22
 
#  define deflateInit2_ z_deflateInit2_
23
 
#  define deflateSetDictionary z_deflateSetDictionary
24
 
#  define deflateCopy   z_deflateCopy
25
 
#  define deflateReset  z_deflateReset
26
 
#  define deflateParams z_deflateParams
27
 
#  define inflateInit2_ z_inflateInit2_
28
 
#  define inflateSetDictionary z_inflateSetDictionary
29
 
#  define inflateSync   z_inflateSync
30
 
#  define inflateSyncPoint z_inflateSyncPoint
31
 
#  define inflateReset  z_inflateReset
32
 
#  define compress      z_compress
33
 
#  define compress2     z_compress2
34
 
#  define uncompress    z_uncompress
35
 
#  define adler32       z_adler32
36
 
#  define crc32         z_crc32
37
 
#  define get_crc_table z_get_crc_table
38
 
 
39
 
#  define Byte          z_Byte
40
 
#  define uInt          z_uInt
41
 
#  define uLong         z_uLong
42
 
#  define Bytef         z_Bytef
43
 
#  define charf         z_charf
44
 
#  define intf          z_intf
45
 
#  define uIntf         z_uIntf
46
 
#  define uLongf        z_uLongf
47
 
#  define voidpf        z_voidpf
48
 
#  define voidp         z_voidp
49
 
#endif
50
 
 
51
 
#if (defined(_WIN32) || defined(__WIN32__)) && !defined(WIN32)
52
 
#  define WIN32
53
 
#endif
54
 
#if defined(__GNUC__) || defined(WIN32) || defined(__386__) || defined(i386)
55
 
#  ifndef __32BIT__
56
 
#    define __32BIT__
57
 
#  endif
58
 
#endif
 
16
#  define deflateInit_          z_deflateInit_
 
17
#  define deflate               z_deflate
 
18
#  define deflateEnd            z_deflateEnd
 
19
#  define inflateInit_          z_inflateInit_
 
20
#  define inflate               z_inflate
 
21
#  define inflateEnd            z_inflateEnd
 
22
#  define deflateInit2_         z_deflateInit2_
 
23
#  define deflateSetDictionary  z_deflateSetDictionary
 
24
#  define deflateCopy           z_deflateCopy
 
25
#  define deflateReset          z_deflateReset
 
26
#  define deflateParams         z_deflateParams
 
27
#  define deflateBound          z_deflateBound
 
28
#  define deflatePrime          z_deflatePrime
 
29
#  define inflateInit2_         z_inflateInit2_
 
30
#  define inflateSetDictionary  z_inflateSetDictionary
 
31
#  define inflateSync           z_inflateSync
 
32
#  define inflateSyncPoint      z_inflateSyncPoint
 
33
#  define inflateCopy           z_inflateCopy
 
34
#  define inflateReset          z_inflateReset
 
35
#  define inflateBack           z_inflateBack
 
36
#  define inflateBackEnd        z_inflateBackEnd
 
37
#  define compress              z_compress
 
38
#  define compress2             z_compress2
 
39
#  define compressBound         z_compressBound
 
40
#  define uncompress            z_uncompress
 
41
#  define adler32               z_adler32
 
42
#  define crc32                 z_crc32
 
43
#  define get_crc_table         z_get_crc_table
 
44
#  define zError                z_zError
 
45
 
 
46
#  define alloc_func            z_alloc_func
 
47
#  define free_func             z_free_func
 
48
#  define in_func               z_in_func
 
49
#  define out_func              z_out_func
 
50
#  define Byte                  z_Byte
 
51
#  define uInt                  z_uInt
 
52
#  define uLong                 z_uLong
 
53
#  define Bytef                 z_Bytef
 
54
#  define charf                 z_charf
 
55
#  define intf                  z_intf
 
56
#  define uIntf                 z_uIntf
 
57
#  define uLongf                z_uLongf
 
58
#  define voidpf                z_voidpf
 
59
#  define voidp                 z_voidp
 
60
#endif
 
61
 
59
62
#if defined(__MSDOS__) && !defined(MSDOS)
60
63
#  define MSDOS
61
64
#endif
 
65
#if (defined(OS_2) || defined(__OS2__)) && !defined(OS2)
 
66
#  define OS2
 
67
#endif
 
68
#if defined(_WINDOWS) && !defined(WINDOWS)
 
69
#  define WINDOWS
 
70
#endif
 
71
#if defined(_WIN32) || defined(_WIN32_WCE) || defined(__WIN32__)
 
72
#  ifndef WIN32
 
73
#    define WIN32
 
74
#  endif
 
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
62
83
 
63
84
/*
64
85
 * Compile with -DMAXSEG_64K if the alloc function cannot allocate more
65
86
 * than 64k bytes at a time (needed on systems with 16-bit int).
66
87
 */
67
 
#if defined(MSDOS) && !defined(__32BIT__)
 
88
#ifdef SYS16BIT
68
89
#  define MAXSEG_64K
69
90
#endif
70
91
#ifdef MSDOS
71
92
#  define UNALIGNED_OK
72
93
#endif
73
94
 
74
 
#if (defined(MSDOS) || defined(_WINDOWS) || defined(WIN32))  && !defined(STDC)
75
 
#  define STDC
76
 
#endif
77
 
#if defined(__STDC__) || defined(__cplusplus) || defined(__OS2__)
 
95
#ifdef __STDC_VERSION__
78
96
#  ifndef STDC
79
97
#    define STDC
80
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
81
120
#endif
82
121
 
83
122
#ifndef STDC
84
123
#  ifndef const /* cannot use !defined(STDC) && !defined(const) on Mac */
85
 
#    define const
 
124
#    define const       /* note: need a more gentle solution here */
86
125
#  endif
87
126
#endif
88
127
 
89
128
/* Some Mac compilers merge all .h files incorrectly: */
90
 
#if defined(__MWERKS__) || defined(applec) ||defined(THINK_C) ||defined(__SC__)
 
129
#if defined(__MWERKS__)||defined(applec)||defined(THINK_C)||defined(__SC__)
91
130
#  define NO_DUMMY_DECL
92
131
#endif
93
132
 
94
 
/* Old Borland C incorrectly complains about missing returns: */
95
 
#if defined(__BORLANDC__) && (__BORLANDC__ < 0x500)
96
 
#  define NEED_DUMMY_RETURN
97
 
#endif
98
 
 
99
 
 
100
133
/* Maximum value for memLevel in deflateInit2 */
101
134
#ifndef MAX_MEM_LEVEL
102
135
#  ifdef MAXSEG_64K
144
177
 * to define NO_MEMCPY in zutil.h.  If you don't need the mixed model,
145
178
 * just define FAR to be empty.
146
179
 */
147
 
#if (defined(M_I86SM) || defined(M_I86MM)) && !defined(__32BIT__)
148
 
   /* MSC small or medium model */
149
 
#  define SMALL_MEDIUM
150
 
#  ifdef _MSC_VER
151
 
#    define FAR _far
152
 
#  else
153
 
#    define FAR far
 
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
154
189
#  endif
155
 
#endif
156
 
#if defined(__BORLANDC__) && (defined(__SMALL__) || defined(__MEDIUM__))
157
 
#  ifndef __32BIT__
 
190
#  if (defined(__SMALL__) || defined(__MEDIUM__))
 
191
     /* Turbo C small or medium model */
158
192
#    define SMALL_MEDIUM
159
 
#    define FAR _far
 
193
#    ifdef __BORLANDC__
 
194
#      define FAR _far
 
195
#    else
 
196
#      define FAR far
 
197
#    endif
160
198
#  endif
161
199
#endif
162
200
 
163
 
/* Compile with -DZLIB_DLL for Windows DLL support */
164
 
#if defined(ZLIB_DLL)
165
 
#  if defined(_WINDOWS) || defined(WINDOWS)
 
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
166
219
#    ifdef FAR
167
220
#      undef FAR
168
221
#    endif
169
222
#    include <windows.h>
170
 
#    define ZEXPORT  WINAPI
 
223
     /* No need for _export, use ZLIB.DEF instead. */
 
224
     /* For complete Windows compatibility, use WINAPI, not __stdcall. */
 
225
#    define ZEXPORT WINAPI
171
226
#    ifdef WIN32
172
 
#      define ZEXPORTVA  WINAPIV
173
 
#    else
174
 
#      define ZEXPORTVA  FAR _cdecl _export
175
 
#    endif
176
 
#  endif
177
 
#  if defined (__BORLANDC__)
178
 
#    if (__BORLANDC__ >= 0x0500) && defined (WIN32)
179
 
#      include <windows.h>
180
 
#      define ZEXPORT __declspec(dllexport) WINAPI
181
 
#      define ZEXPORTRVA __declspec(dllexport) WINAPIV
182
 
#    else
183
 
#      if defined (_Windows) && defined (__DLL__)
184
 
#        define ZEXPORT _export
185
 
#        define ZEXPORTVA _export
186
 
#      endif
 
227
#      define ZEXPORTVA WINAPIV
 
228
#    else
 
229
#      define ZEXPORTVA FAR CDECL
187
230
#    endif
188
231
#  endif
189
232
#endif
190
233
 
191
234
#if defined (__BEOS__)
192
 
#  if defined (ZLIB_DLL)
193
 
#    define ZEXTERN extern __declspec(dllexport)
194
 
#  else
195
 
#    define ZEXTERN extern __declspec(dllimport)
 
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
196
243
#  endif
197
244
#endif
198
245
 
 
246
#ifndef ZEXTERN
 
247
#  define ZEXTERN extern
 
248
#endif
199
249
#ifndef ZEXPORT
200
250
#  define ZEXPORT
201
251
#endif
202
252
#ifndef ZEXPORTVA
203
253
#  define ZEXPORTVA
204
254
#endif
205
 
#ifndef ZEXTERN
206
 
#  define ZEXTERN extern
207
 
#endif
208
255
 
209
256
#ifndef FAR
210
 
#   define FAR
 
257
#  define FAR
211
258
#endif
212
259
 
213
 
#if !defined(MACOS) && !defined(TARGET_OS_MAC)
 
260
#if !defined(__MACTYPES__)
214
261
typedef unsigned char  Byte;  /* 8 bits */
215
262
#endif
216
263
typedef unsigned int   uInt;  /* 16 bits or more */
228
275
typedef uLong FAR uLongf;
229
276
 
230
277
#ifdef STDC
231
 
   typedef void FAR *voidpf;
232
 
   typedef void     *voidp;
 
278
   typedef void const *voidpc;
 
279
   typedef void FAR   *voidpf;
 
280
   typedef void       *voidp;
233
281
#else
234
 
   typedef Byte FAR *voidpf;
235
 
   typedef Byte     *voidp;
 
282
   typedef Byte const *voidpc;
 
283
   typedef Byte FAR   *voidpf;
 
284
   typedef Byte       *voidp;
236
285
#endif
237
286
 
238
 
#ifdef HAVE_UNISTD_H
 
287
#if 0           /* HAVE_UNISTD_H -- this line is updated by ./configure */
239
288
#  include <sys/types.h> /* for off_t */
240
289
#  include <unistd.h>    /* for SEEK_* and off_t */
241
 
#  define z_off_t  off_t
 
290
#  ifdef VMS
 
291
#    include <unixio.h>   /* for off_t */
 
292
#  endif
 
293
#  define z_off_t off_t
242
294
#endif
243
295
#ifndef SEEK_SET
244
296
#  define SEEK_SET        0       /* Seek from beginning of file.  */
246
298
#  define SEEK_END        2       /* Set file pointer to EOF plus "offset" */
247
299
#endif
248
300
#ifndef z_off_t
249
 
#  define  z_off_t long
 
301
#  define z_off_t long
 
302
#endif
 
303
 
 
304
#if defined(__OS400__)
 
305
#  define NO_vsnprintf
 
306
#endif
 
307
 
 
308
#if defined(__MVS__)
 
309
#  define NO_vsnprintf
 
310
#  ifdef FAR
 
311
#    undef FAR
 
312
#  endif
250
313
#endif
251
314
 
252
315
/* MVS linker does not support external names larger than 8 bytes */
254
317
#   pragma map(deflateInit_,"DEIN")
255
318
#   pragma map(deflateInit2_,"DEIN2")
256
319
#   pragma map(deflateEnd,"DEEND")
 
320
#   pragma map(deflateBound,"DEBND")
257
321
#   pragma map(inflateInit_,"ININ")
258
322
#   pragma map(inflateInit2_,"ININ2")
259
323
#   pragma map(inflateEnd,"INEND")
260
324
#   pragma map(inflateSync,"INSY")
261
325
#   pragma map(inflateSetDictionary,"INSEDI")
262
 
#   pragma map(inflate_blocks,"INBL")
263
 
#   pragma map(inflate_blocks_new,"INBLNE")
264
 
#   pragma map(inflate_blocks_free,"INBLFR")
265
 
#   pragma map(inflate_blocks_reset,"INBLRE")
266
 
#   pragma map(inflate_codes_free,"INCOFR")
267
 
#   pragma map(inflate_codes,"INCO")
 
326
#   pragma map(compressBound,"CMBND")
 
327
#   pragma map(inflate_table,"INTABL")
268
328
#   pragma map(inflate_fast,"INFA")
269
 
#   pragma map(inflate_flush,"INFLU")
270
 
#   pragma map(inflate_mask,"INMA")
271
 
#   pragma map(inflate_set_dictionary,"INSEDI2")
272
329
#   pragma map(inflate_copyright,"INCOPY")
273
 
#   pragma map(inflate_trees_bits,"INTRBI")
274
 
#   pragma map(inflate_trees_dynamic,"INTRDY")
275
 
#   pragma map(inflate_trees_fixed,"INTRFI")
276
 
#   pragma map(inflate_trees_free,"INTRFR")
277
330
#endif
278
331
 
279
 
#endif /* _ZCONF_H */
 
332
#endif /* ZCONF_H */