jconfigint.h.in 796 B

12345678910111213141516171819202122232425262728293031
  1. /* libjpeg-turbo build number */
  2. #define BUILD "@BUILD@"
  3. /* Compiler's inline keyword */
  4. #undef inline
  5. /* How to obtain function inlining. */
  6. #define INLINE @INLINE@
  7. /* Define to the full name of this package. */
  8. #define PACKAGE_NAME "@CMAKE_PROJECT_NAME@"
  9. /* Version number of package */
  10. #define VERSION "@VERSION@"
  11. /* The size of `size_t', as computed by sizeof. */
  12. #define SIZEOF_SIZE_T @SIZE_T@
  13. /* Define if your compiler has __builtin_ctzl() and sizeof(unsigned long) == sizeof(size_t). */
  14. #cmakedefine HAVE_BUILTIN_CTZL
  15. /* Define to 1 if you have the <intrin.h> header file. */
  16. #cmakedefine HAVE_INTRIN_H
  17. #if defined(_MSC_VER) && defined(HAVE_INTRIN_H)
  18. #if (SIZEOF_SIZE_T == 8)
  19. #define HAVE_BITSCANFORWARD64
  20. #elif (SIZEOF_SIZE_T == 4)
  21. #define HAVE_BITSCANFORWARD
  22. #endif
  23. #endif