zconf.inc 876 B

123456789101112131415161718192021222324252627282930313233343536
  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 MAXSEG_64K}
  8. {$ENDIF}
  9. {$IFNDEF WIN32}
  10. {$DEFINE UNALIGNED_OK} { requires SizeOf(ush) = 2 ! }
  11. {$ENDIF}
  12. {$UNDEF DYNAMIC_CRC_TABLE}
  13. {$UNDEF FASTEST}
  14. {$define patch112} { apply patch from the zlib home page }
  15. { -------------------------------------------------------------------- }
  16. {$IFDEF WIN32}
  17. {$DEFINE Delphi32}
  18. {- $DEFINE Delphi5} { keep compiler quiet }
  19. {$ENDIF}
  20. {$IFDEF DPMI}
  21. {$DEFINE MSDOS}
  22. {$ENDIF}
  23. {$IFDEF FPC}
  24. {$DEFINE Use32}
  25. {$UNDEF DPMI}
  26. {$UNDEF MSDOS}
  27. {$UNDEF UNALIGNED_OK} { requires SizeOf(ush) = 2 ! }
  28. {$UNDEF MAXSEG_64K}
  29. {$UNDEF Delphi32}
  30. {$ENDIF}