zconf.inc 916 B

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