You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.5KB

  1. /* jconfig.cfg --- source file edited by configure script */
  2. /* see jconfig.doc for explanations */
  3. #define HAVE_PROTOTYPES
  4. #define HAVE_UNSIGNED_CHAR
  5. #define HAVE_UNSIGNED_SHORT
  6. #ifdef __CHAR_UNSIGNED__
  7. # define CHAR_IS_UNSIGNED
  8. #endif /* __CHAR_UNSIGNED__ */
  9. #define HAVE_STDLIB_H
  10. /* Define this if you get warnings about undefined structures. */
  11. #undef INCOMPLETE_TYPES_BROKEN
  12. #if defined(WIN32) || defined(__EMX__)
  13. /* Define "boolean" as unsigned char, not int, per Windows custom */
  14. # ifndef __RPCNDR_H__ /* don't conflict if rpcndr.h already read */
  15. typedef unsigned char boolean;
  16. # endif
  17. # define HAVE_BOOLEAN /* prevent jmorecfg.h from redefining it */
  18. #endif /* WIN32 || __EMX__ */
  19. #ifdef JPEG_INTERNALS
  20. #undef RIGHT_SHIFT_IS_UNSIGNED
  21. #undef INLINE
  22. /* These are for configuring the JPEG memory manager. */
  23. #undef DEFAULT_MAX_MEM
  24. #undef NO_MKTEMP
  25. #endif /* JPEG_INTERNALS */
  26. #ifdef JPEG_CJPEG_DJPEG
  27. #define BMP_SUPPORTED /* BMP image file format */
  28. #define GIF_SUPPORTED /* GIF image file format */
  29. #define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
  30. #undef RLE_SUPPORTED /* Utah RLE image file format */
  31. #define TARGA_SUPPORTED /* Targa image file format */
  32. #undef TWO_FILE_COMMANDLINE
  33. #undef NEED_SIGNAL_CATCHER
  34. #undef DONT_USE_B_MODE
  35. #if defined(WIN32) || defined(__EMX__)
  36. # define USE_SETMODE
  37. #endif /* WIN32 || __EMX__ */
  38. /* Define this if you want percent-done progress reports from cjpeg/djpeg. */
  39. #undef PROGRESS_REPORT
  40. #endif /* JPEG_CJPEG_DJPEG */