jconfig.manx 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* jconfig.manx --- jconfig.h for Amiga systems using Manx Aztec C ver 5.x. */
  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. #undef INCOMPLETE_TYPES_BROKEN
  16. #ifdef JPEG_INTERNALS
  17. #undef RIGHT_SHIFT_IS_UNSIGNED
  18. #define TEMP_DIRECTORY "JPEGTMP:" /* recommended setting for Amiga */
  19. #define SHORTxSHORT_32 /* produces better DCT code with Aztec C */
  20. #endif /* JPEG_INTERNALS */
  21. #ifdef JPEG_CJPEG_DJPEG
  22. #define BMP_SUPPORTED /* BMP image file format */
  23. #define GIF_SUPPORTED /* GIF image file format */
  24. #define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
  25. #undef RLE_SUPPORTED /* Utah RLE image file format */
  26. #define TARGA_SUPPORTED /* Targa image file format */
  27. #define TWO_FILE_COMMANDLINE
  28. #define NEED_SIGNAL_CATCHER
  29. #undef DONT_USE_B_MODE
  30. #undef PROGRESS_REPORT /* optional */
  31. #define signal_catcher _abort /* hack for Aztec C naming requirements */
  32. #endif /* JPEG_CJPEG_DJPEG */