jconfigint.h 797 B

12345678910111213141516171819202122232425262728293031
  1. /* libjpeg-turbo build number */
  2. #define BUILD "20200828"
  3. /* Compiler's inline keyword */
  4. #undef inline
  5. /* How to obtain function inlining. */
  6. #define INLINE __inline__ __attribute__((always_inline))
  7. /* How to obtain thread-local storage */
  8. #define THREAD_LOCAL __thread
  9. /* Define to the full name of this package. */
  10. #define PACKAGE_NAME "mozjpeg"
  11. /* Version number of package */
  12. #define VERSION "4.0.1"
  13. /* Define if your compiler has __builtin_ctzl() and sizeof(unsigned long) == sizeof(size_t). */
  14. #define HAVE_BUILTIN_CTZL
  15. /* Define to 1 if you have the <intrin.h> header file. */
  16. /* #undef 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