blob: 346a5de581ce307c5d8607b30994cadbf3fde038 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#define BUILD "20201116"
#undef inline
#define INLINE __inline__ __attribute__((always_inline))
#ifdef HAVE__THREAD_LOCAL
#define THREAD_LOCAL _Thread_local
#endif
#define PACKAGE_NAME "libjpeg-turbo"
#define VERSION "2.0.6"
#define SIZEOF_SIZE_T 8
#ifdef HAVE___BUILTIN_CTZL
#define HAVE_BUILTIN_CTZL
#endif
/* #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
|