jconfig.h.in 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. #define JPEG_LIB_VERSION @JPEG_LIB_VERSION@
  2. #define LIBJPEG_TURBO_VERSION @VERSION@
  3. #define LIBJPEG_TURBO_VERSION_NUMBER @LIBJPEG_TURBO_VERSION_NUMBER@
  4. #cmakedefine C_ARITH_CODING_SUPPORTED
  5. #cmakedefine D_ARITH_CODING_SUPPORTED
  6. #cmakedefine MEM_SRCDST_SUPPORTED
  7. #cmakedefine WITH_SIMD
  8. #define BITS_IN_JSAMPLE @BITS_IN_JSAMPLE@ /* use 8 or 12 */
  9. #define HAVE_STDDEF_H
  10. #define HAVE_STDLIB_H
  11. #undef NEED_SYS_TYPES_H
  12. #undef NEED_BSD_STRINGS
  13. #define HAVE_UNSIGNED_CHAR
  14. #define HAVE_UNSIGNED_SHORT
  15. #undef INCOMPLETE_TYPES_BROKEN
  16. #undef RIGHT_SHIFT_IS_UNSIGNED
  17. #undef __CHAR_UNSIGNED__
  18. /* Define "boolean" as unsigned char, not int, per Windows custom */
  19. #ifndef __RPCNDR_H__ /* don't conflict if rpcndr.h already read */
  20. typedef unsigned char boolean;
  21. #endif
  22. #define HAVE_BOOLEAN /* prevent jmorecfg.h from redefining it */
  23. /* Define "INT32" as int, not long, per Windows custom */
  24. #if !(defined(_BASETSD_H_) || defined(_BASETSD_H)) /* don't conflict if basetsd.h already read */
  25. typedef short INT16;
  26. typedef signed int INT32;
  27. #endif
  28. #define XMD_H /* prevent jmorecfg.h from redefining it */