1/* jconfigint.h.  Customized for android on the basis of jconfigint.h.in. */
2
3#ifndef __JCONFIGINT_H__
4#define __JCONFIGINT_H__
5
6
7#define BUILD ""
8
9/* How to obtain function inlining. */
10#ifndef INLINE
11  #ifndef TURBO_FOR_WINDOWS
12    #define INLINE inline __attribute__((always_inline))
13  #else
14    #if defined(__GNUC__)
15      #define INLINE inline __attribute__((always_inline))
16    #elif defined(_MSC_VER)
17      #define INLINE __forceinline
18    #else
19      #define INLINE
20    #endif
21  #endif
22#endif
23
24/* Define to the full name of this package. */
25#define PACKAGE_NAME "libjpeg-turbo"
26
27/* Version number of package */
28#define VERSION "1.5.1"
29
30/* The size of `size_t', as reported by the compiler through the
31 * builtin macro __SIZEOF_SIZE_T__. If the compiler does not
32 * report __SIZEOF_SIZE_T__ add a custom rule for the compiler
33 * here. */
34#ifdef __SIZEOF_SIZE_T__
35#define SIZEOF_SIZE_T __SIZEOF_SIZE_T__
36#elif __WORDSIZE==64 || defined(_WIN64)
37#define SIZEOF_SIZE_T 8
38#else
39#define SIZEOF_SIZE_T 4
40#endif
41
42#endif // __JCONFIGINT_H__
43