Andrew Top | 8414344 | 2018-07-12 10:44:23 -0700 | [diff] [blame] | 1 | /* jconfigint.h. Generated from jconfigint.h.in by configure. */ |
| 2 | /* libjpeg-turbo build number */ |
| 3 | #define BUILD "" |
| 4 | |
| 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 | |
| 16 | /* Define to the full name of this package. */ |
| 17 | #define PACKAGE_NAME "libjpeg-turbo" |
| 18 | |
| 19 | /* Version number of package */ |
| 20 | #define VERSION "1.4.90" |
| 21 | |
| 22 | /* The size of `size_t', as computed by sizeof. */ |
| 23 | #if __WORDSIZE==64 || defined(_WIN64) |
| 24 | #define SIZEOF_SIZE_T 8 |
| 25 | #else |
| 26 | #define SIZEOF_SIZE_T 4 |
| 27 | #endif |
| 28 | |