jconfig.h.in 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /* Version ID for the JPEG library.
  2. * Might be useful for tests like "#if JPEG_LIB_VERSION >= 60".
  3. */
  4. #define JPEG_LIB_VERSION @JPEG_LIB_VERSION@
  5. /* libjpeg-turbo version */
  6. #define LIBJPEG_TURBO_VERSION @VERSION@
  7. /* libjpeg-turbo version in integer form */
  8. #define LIBJPEG_TURBO_VERSION_NUMBER @LIBJPEG_TURBO_VERSION_NUMBER@
  9. /* Support arithmetic encoding */
  10. #cmakedefine C_ARITH_CODING_SUPPORTED
  11. /* Support arithmetic decoding */
  12. #cmakedefine D_ARITH_CODING_SUPPORTED
  13. /* Support in-memory source/destination managers */
  14. #cmakedefine MEM_SRCDST_SUPPORTED
  15. /* Use accelerated SIMD routines. */
  16. #cmakedefine WITH_SIMD
  17. /*
  18. * Define BITS_IN_JSAMPLE as either
  19. * 8 for 8-bit sample values (the usual setting)
  20. * 12 for 12-bit sample values
  21. * Only 8 and 12 are legal data precisions for lossy JPEG according to the
  22. * JPEG standard, and the IJG code does not support anything else!
  23. * We do not support run-time selection of data precision, sorry.
  24. */
  25. #define BITS_IN_JSAMPLE @BITS_IN_JSAMPLE@ /* use 8 or 12 */
  26. /* Define to 1 if you have the <locale.h> header file. */
  27. #cmakedefine HAVE_LOCALE_H
  28. /* Define to 1 if you have the <stddef.h> header file. */
  29. #cmakedefine HAVE_STDDEF_H
  30. /* Define to 1 if you have the <stdlib.h> header file. */
  31. #cmakedefine HAVE_STDLIB_H
  32. /* Define if you need to include <sys/types.h> to get size_t. */
  33. #cmakedefine NEED_SYS_TYPES_H
  34. /* Define if you have BSD-like bzero and bcopy in <strings.h> rather than
  35. memset/memcpy in <string.h>. */
  36. #cmakedefine NEED_BSD_STRINGS
  37. /* Define to 1 if the system has the type `unsigned char'. */
  38. #cmakedefine HAVE_UNSIGNED_CHAR
  39. /* Define to 1 if the system has the type `unsigned short'. */
  40. #cmakedefine HAVE_UNSIGNED_SHORT
  41. /* Compiler does not support pointers to undefined structures. */
  42. #cmakedefine INCOMPLETE_TYPES_BROKEN
  43. /* Define if your (broken) compiler shifts signed values as if they were
  44. unsigned. */
  45. #cmakedefine RIGHT_SHIFT_IS_UNSIGNED
  46. /* Define to 1 if type `char' is unsigned and you are not using gcc. */
  47. #ifndef __CHAR_UNSIGNED__
  48. #cmakedefine __CHAR_UNSIGNED__
  49. #endif
  50. /* Define to empty if `const' does not conform to ANSI C. */
  51. /* #undef const */
  52. /* Define to `unsigned int' if <sys/types.h> does not define. */
  53. /* #undef size_t */