define.inc 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. { **********************************************************************
  2. Define one of the following versions. Default 2.0 will be taken if none
  3. is defined
  4. **********************************************************************}
  5. { $define apache1_3}
  6. { $define apache2_0}
  7. { $define apache2_2}
  8. { *********************************************************************
  9. No need to edit below this line.
  10. *********************************************************************}
  11. { *********************************************************************
  12. The mode must be objfpc on this unit because the unix code uses
  13. some extensions introduced on Free Pascal
  14. *********************************************************************}
  15. {$ifdef fpc}
  16. {$mode objfpc}{$H+}
  17. {$endif}
  18. {$IFNDEF FPC}
  19. {$DEFINE WINDOWS}
  20. {$ENDIF}
  21. {$IFDEF WIN32}
  22. {$DEFINE WINDOWS}
  23. {$ENDIF}
  24. { Set at least one define. Default to 2.0 for now}
  25. {$ifndef apache1_3}
  26. {$ifndef apache2_0}
  27. {$ifndef apache2_2}
  28. { Default 2.0 }
  29. {$define apache2_0}
  30. {$endif}
  31. {$endif}
  32. {$endif}