jconfig.st 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /* jconfig.st --- jconfig.h for Atari ST/STE/TT using Pure C or Turbo C. */
  2. /* see jconfig.doc for explanations */
  3. #define HAVE_PROTOTYPES
  4. #define HAVE_UNSIGNED_CHAR
  5. #define HAVE_UNSIGNED_SHORT
  6. /* #define void char */
  7. /* #define const */
  8. #undef CHAR_IS_UNSIGNED
  9. #define HAVE_STDDEF_H
  10. #define HAVE_STDLIB_H
  11. #undef NEED_BSD_STRINGS
  12. #undef NEED_SYS_TYPES_H
  13. #undef NEED_FAR_POINTERS
  14. #undef NEED_SHORT_EXTERNAL_NAMES
  15. #define INCOMPLETE_TYPES_BROKEN /* suppress undefined-structure warnings */
  16. #ifdef JPEG_INTERNALS
  17. #undef RIGHT_SHIFT_IS_UNSIGNED
  18. #define ALIGN_TYPE long /* apparently double is a weird size? */
  19. #endif /* JPEG_INTERNALS */
  20. #ifdef JPEG_CJPEG_DJPEG
  21. #define BMP_SUPPORTED /* BMP image file format */
  22. #define GIF_SUPPORTED /* GIF image file format */
  23. #define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
  24. #undef RLE_SUPPORTED /* Utah RLE image file format */
  25. #define TARGA_SUPPORTED /* Targa image file format */
  26. #define TWO_FILE_COMMANDLINE /* optional -- undef if you like Unix style */
  27. /* Note: if you undef TWO_FILE_COMMANDLINE, you may need to define
  28. * USE_SETMODE. Some Atari compilers require it, some do not.
  29. */
  30. #define NEED_SIGNAL_CATCHER /* needed if you use jmemname.c */
  31. #undef DONT_USE_B_MODE
  32. #undef PROGRESS_REPORT /* optional */
  33. #endif /* JPEG_CJPEG_DJPEG */