jconfig.h 2.3 KB

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