jconfigint.h 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /* libjpeg-turbo build number */
  2. #define BUILD ""
  3. /* Compiler's inline keyword */
  4. #undef inline
  5. /* How to obtain function inlining. */
  6. #ifndef INLINE
  7. #if defined(__GNUC__)
  8. #define INLINE inline __attribute__((always_inline))
  9. #elif defined(_MSC_VER)
  10. #define INLINE __forceinline
  11. #else
  12. #define INLINE
  13. #endif
  14. #endif
  15. /* Define to the full name of this package. */
  16. #define PACKAGE_NAME "libjpeg-turbo"
  17. /* Version number of package */
  18. #define VERSION "2.0.1"
  19. /* The size of `size_t', as computed by sizeof. */
  20. #if __WORDSIZE==64 || defined(_WIN64)
  21. #define SIZEOF_SIZE_T 8
  22. #else
  23. #define SIZEOF_SIZE_T 4
  24. #endif
  25. /* Define if your compiler has __builtin_ctzl() and sizeof(unsigned long) == sizeof(size_t). */
  26. #if defined(__GNUC__)
  27. #define HAVE_BUILTIN_CTZL
  28. #endif
  29. /* Define to 1 if you have the <intrin.h> header file. */
  30. #if defined(_MSC_VER)
  31. #define HAVE_INTRIN_H 1
  32. #endif
  33. #if defined(_MSC_VER) && defined(HAVE_INTRIN_H)
  34. #if (SIZEOF_SIZE_T == 8)
  35. #define HAVEBITSCANFORWARD64
  36. #elif (SIZEOF_SIZE_T == 4)
  37. #define HAVEBITSCANFORWARD
  38. #endif
  39. #endif