OLD | NEW |
1 /* config.h. Generated from config.h.in by configure. */ | 1 /* config.h. Generated from config.h.in by configure. */ |
2 /* config.h.in. Generated from configure.ac by autoheader. */ | 2 /* config.h.in. Generated from configure.ac by autoheader. */ |
3 | 3 |
4 /* Build number */ | 4 /* Build number */ |
5 #define BUILD "20120511" | 5 #define BUILD "20120511" |
6 | 6 |
7 /* Support arithmetic encoding */ | 7 /* Support arithmetic encoding */ |
8 /* #undef C_ARITH_CODING_SUPPORTED */ | 8 /* #undef C_ARITH_CODING_SUPPORTED */ |
9 | 9 |
10 /* Support arithmetic decoding */ | 10 /* Support arithmetic decoding */ |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 | 62 |
63 /* Define to 1 if the system has the type `unsigned short'. */ | 63 /* Define to 1 if the system has the type `unsigned short'. */ |
64 #define HAVE_UNSIGNED_SHORT 1 | 64 #define HAVE_UNSIGNED_SHORT 1 |
65 | 65 |
66 /* Compiler does not support pointers to undefined structures. */ | 66 /* Compiler does not support pointers to undefined structures. */ |
67 /* #undef INCOMPLETE_TYPES_BROKEN */ | 67 /* #undef INCOMPLETE_TYPES_BROKEN */ |
68 | 68 |
69 /* How to obtain function inlining. */ | 69 /* How to obtain function inlining. */ |
70 #ifndef INLINE | 70 #ifndef INLINE |
71 #if defined(__GNUC__) | 71 #if defined(__GNUC__) |
72 #define INLINE __attribute__((always_inline)) | 72 #define INLINE inline __attribute__((always_inline)) |
73 #elif defined(_MSC_VER) | 73 #elif defined(_MSC_VER) |
74 #define INLINE __forceinline | 74 #define INLINE __forceinline |
75 #else | 75 #else |
76 #define INLINE | 76 #define INLINE |
77 #endif | 77 #endif |
78 #endif | 78 #endif |
79 | 79 |
80 /* libjpeg API version */ | 80 /* libjpeg API version */ |
81 #define JPEG_LIB_VERSION 62 | 81 #define JPEG_LIB_VERSION 62 |
82 | 82 |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 /* #undef const */ | 138 /* #undef const */ |
139 | 139 |
140 /* Define to `__inline__' or `__inline' if that's what the C compiler | 140 /* Define to `__inline__' or `__inline' if that's what the C compiler |
141 calls it, or to nothing if 'inline' is not supported under any name. */ | 141 calls it, or to nothing if 'inline' is not supported under any name. */ |
142 #ifndef __cplusplus | 142 #ifndef __cplusplus |
143 /* #undef inline */ | 143 /* #undef inline */ |
144 #endif | 144 #endif |
145 | 145 |
146 /* Define to `unsigned int' if <sys/types.h> does not define. */ | 146 /* Define to `unsigned int' if <sys/types.h> does not define. */ |
147 /* #undef size_t */ | 147 /* #undef size_t */ |
OLD | NEW |