/* libjpeg-turbo build number */ #define BUILD "20200828" /* Compiler's inline keyword */ #undef inline /* How to obtain function inlining. */ #define INLINE __inline__ __attribute__((always_inline)) /* How to obtain thread-local storage */ #define THREAD_LOCAL __thread /* Define to the full name of this package. */ #define PACKAGE_NAME "mozjpeg" /* Version number of package */ #define VERSION "4.0.1" /* Define if your compiler has __builtin_ctzl() and sizeof(unsigned long) == sizeof(size_t). */ #define HAVE_BUILTIN_CTZL /* Define to 1 if you have the header file. */ /* #undef HAVE_INTRIN_H */ #if defined(_MSC_VER) && defined(HAVE_INTRIN_H) #if (SIZEOF_SIZE_T == 8) #define HAVE_BITSCANFORWARD64 #elif (SIZEOF_SIZE_T == 4) #define HAVE_BITSCANFORWARD #endif #endif