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