jconfig.cfg 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /* jconfig.cfg --- source file edited by configure script */
  2. /* see jconfig.txt for explanations */
  3. #undef HAVE_PROTOTYPES
  4. #undef HAVE_UNSIGNED_CHAR
  5. #undef HAVE_UNSIGNED_SHORT
  6. #undef void
  7. #undef const
  8. #undef CHAR_IS_UNSIGNED
  9. #undef HAVE_STDDEF_H
  10. #undef HAVE_STDLIB_H
  11. #undef HAVE_LOCALE_H
  12. #undef NEED_BSD_STRINGS
  13. #undef NEED_SYS_TYPES_H
  14. #undef NEED_FAR_POINTERS
  15. #undef NEED_SHORT_EXTERNAL_NAMES
  16. /* Define this if you get warnings about undefined structures. */
  17. #undef INCOMPLETE_TYPES_BROKEN
  18. /* Define "boolean" as unsigned char, not enum, on Windows systems. */
  19. #ifdef _WIN32
  20. #ifndef __RPCNDR_H__ /* don't conflict if rpcndr.h already read */
  21. typedef unsigned char boolean;
  22. #endif
  23. #ifndef FALSE /* in case these macros already exist */
  24. #define FALSE 0 /* values of boolean */
  25. #endif
  26. #ifndef TRUE
  27. #define TRUE 1
  28. #endif
  29. #define HAVE_BOOLEAN /* prevent jmorecfg.h from redefining it */
  30. #endif
  31. #ifdef JPEG_INTERNALS
  32. #undef RIGHT_SHIFT_IS_UNSIGNED
  33. #undef INLINE
  34. /* These are for configuring the JPEG memory manager. */
  35. #undef DEFAULT_MAX_MEM
  36. #undef NO_MKTEMP
  37. #endif /* JPEG_INTERNALS */
  38. #ifdef JPEG_CJPEG_DJPEG
  39. #define BMP_SUPPORTED /* BMP image file format */
  40. #define GIF_SUPPORTED /* GIF image file format */
  41. #define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
  42. #undef RLE_SUPPORTED /* Utah RLE image file format */
  43. #define TARGA_SUPPORTED /* Targa image file format */
  44. #undef TWO_FILE_COMMANDLINE
  45. #undef NEED_SIGNAL_CATCHER
  46. #undef DONT_USE_B_MODE
  47. /* Define this if you want percent-done progress reports from cjpeg/djpeg. */
  48. #undef PROGRESS_REPORT
  49. #endif /* JPEG_CJPEG_DJPEG */