jconfig.h.in 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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 62 /* Version 6b */
  5. /* libjpeg-turbo version */
  6. #define LIBJPEG_TURBO_VERSION 0
  7. /* Support arithmetic encoding */
  8. #undef C_ARITH_CODING_SUPPORTED
  9. /* Support arithmetic decoding */
  10. #undef D_ARITH_CODING_SUPPORTED
  11. /* Support in-memory source/destination managers */
  12. #undef MEM_SRCDST_SUPPORTED
  13. /* Compiler supports function prototypes. */
  14. #undef HAVE_PROTOTYPES
  15. /* Define to 1 if you have the <stddef.h> header file. */
  16. #undef HAVE_STDDEF_H
  17. /* Define to 1 if you have the <stdlib.h> header file. */
  18. #undef HAVE_STDLIB_H
  19. /* Compiler supports 'unsigned char'. */
  20. #undef HAVE_UNSIGNED_CHAR
  21. /* Compiler supports 'unsigned short'. */
  22. #undef HAVE_UNSIGNED_SHORT
  23. /* Compiler does not support pointers to unspecified structures. */
  24. #undef INCOMPLETE_TYPES_BROKEN
  25. /* Compiler has <strings.h> rather than standard <string.h>. */
  26. #undef NEED_BSD_STRINGS
  27. /* Linker requires that global names be unique in first 15 characters. */
  28. #undef NEED_SHORT_EXTERNAL_NAMES
  29. /* Need to include <sys/types.h> in order to obtain size_t. */
  30. #undef NEED_SYS_TYPES_H
  31. /* Broken compiler shifts signed values as an unsigned shift. */
  32. #undef RIGHT_SHIFT_IS_UNSIGNED
  33. /* Use accelerated SIMD routines. */
  34. #undef WITH_SIMD
  35. /* Define to 1 if type `char' is unsigned and you are not using gcc. */
  36. #ifndef __CHAR_UNSIGNED__
  37. # undef __CHAR_UNSIGNED__
  38. #endif
  39. /* Define to empty if `const' does not conform to ANSI C. */
  40. #undef const
  41. /* Define to `unsigned int' if <sys/types.h> does not define. */
  42. #undef size_t