jconfigint.h.in 875 B

12345678910111213141516171819202122232425262728293031323334
  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. /* How to obtain thread-local storage */
  8. #define THREAD_LOCAL @THREAD_LOCAL@
  9. /* Define to the full name of this package. */
  10. #define PACKAGE_NAME "@CMAKE_PROJECT_NAME@"
  11. /* Version number of package */
  12. #define VERSION "@VERSION@"
  13. /* The size of `size_t', as computed by sizeof. */
  14. #define SIZEOF_SIZE_T @SIZE_T@
  15. /* Define if your compiler has __builtin_ctzl() and sizeof(unsigned long) == sizeof(size_t). */
  16. #cmakedefine HAVE_BUILTIN_CTZL
  17. /* Define to 1 if you have the <intrin.h> header file. */
  18. #cmakedefine HAVE_INTRIN_H
  19. #if defined(_MSC_VER) && defined(HAVE_INTRIN_H)
  20. #if (SIZEOF_SIZE_T == 8)
  21. #define HAVE_BITSCANFORWARD64
  22. #elif (SIZEOF_SIZE_T == 4)
  23. #define HAVE_BITSCANFORWARD
  24. #endif
  25. #endif