blob: 7086daea68d2ee900724ca1cc61df5961a0dcf61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
{ -------------------------------------------------------------------- }
{$DEFINE MAX_MATCH_IS_258}
{ Compile with -DMAXSEG_64K if the alloc function cannot allocate more
than 64k bytes at a time (needed on systems with 16-bit int). }
{- $DEFINE MAXSEG_64K}
{$IFDEF VER70}
{$DEFINE TP}
{$DEFINE MAXSEG_64K}
{$ENDIF}
{$IFNDEF WIN32}
{$DEFINE UNALIGNED_OK} { requires SizeOf(ush) = 2 ! }
{$ENDIF}
{$UNDEF DYNAMIC_CRC_TABLE}
{$UNDEF FASTEST}
{$define patch112} { apply patch from the zlib home page }
{ -------------------------------------------------------------------- }
{$IFDEF WIN32}
{$DEFINE Delphi32}
{- $DEFINE Delphi5} { keep compiler quiet }
{$ENDIF}
{$IFDEF DPMI}
{$DEFINE MSDOS}
{$ENDIF}
{$IFDEF FPC}
{$DEFINE Use32}
{$DEFINE pointer_arith}
{$UNDEF DPMI}
{$UNDEF MSDOS}
{$UNDEF UNALIGNED_OK} { requires SizeOf(ush) = 2 ! }
{$UNDEF MAXSEG_64K}
{$UNDEF Delphi32}
{$ENDIF}
|