Team Fortress 2 Source Code as on 22/4/2020
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.

53 lines
1.4 KiB

  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 int, 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. #define HAVE_BOOLEAN /* prevent jmorecfg.h from redefining it */
  24. #endif
  25. #ifdef JPEG_INTERNALS
  26. #undef RIGHT_SHIFT_IS_UNSIGNED
  27. #undef INLINE
  28. /* These are for configuring the JPEG memory manager. */
  29. #undef DEFAULT_MAX_MEM
  30. #undef NO_MKTEMP
  31. #endif /* JPEG_INTERNALS */
  32. #ifdef JPEG_CJPEG_DJPEG
  33. #define BMP_SUPPORTED /* BMP image file format */
  34. #define GIF_SUPPORTED /* GIF image file format */
  35. #define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
  36. #undef RLE_SUPPORTED /* Utah RLE image file format */
  37. #define TARGA_SUPPORTED /* Targa image file format */
  38. #undef TWO_FILE_COMMANDLINE
  39. #undef NEED_SIGNAL_CATCHER
  40. #undef DONT_USE_B_MODE
  41. /* Define this if you want percent-done progress reports from cjpeg/djpeg. */
  42. #undef PROGRESS_REPORT
  43. #endif /* JPEG_CJPEG_DJPEG */