jconfig.sas 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* jconfig.sas --- jconfig.h for Amiga systems using SAS C 6.0 and up. */
  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 NO_MKTEMP /* SAS C doesn't have mktemp() */
  20. #define SHORTxSHORT_32 /* produces better DCT code with SAS C */
  21. #endif /* JPEG_INTERNALS */
  22. #ifdef JPEG_CJPEG_DJPEG
  23. #define BMP_SUPPORTED /* BMP image file format */
  24. #define GIF_SUPPORTED /* GIF image file format */
  25. #define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
  26. #undef RLE_SUPPORTED /* Utah RLE image file format */
  27. #define TARGA_SUPPORTED /* Targa image file format */
  28. #define TWO_FILE_COMMANDLINE
  29. #define NEED_SIGNAL_CATCHER
  30. #undef DONT_USE_B_MODE
  31. #undef PROGRESS_REPORT /* optional */
  32. #endif /* JPEG_CJPEG_DJPEG */