blob: 670afab53e43bdb2b7b7c26d92e3c7aa6584802b [file] [log] [blame]
DRC36a6eec2010-10-08 08:05:44 +00001/* Version ID for the JPEG library.
2 * Might be useful for tests like "#if JPEG_LIB_VERSION >= 60".
3 */
4#define JPEG_LIB_VERSION 62 /* Version 6b */
5
DRCe3720042010-11-23 06:50:14 +00006/* Support arithmetic encoding */
7#undef C_ARITH_CODING_SUPPORTED
8
9/* Support arithmetic decoding */
10#undef D_ARITH_CODING_SUPPORTED
11
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000012/* Define if your compiler supports prototypes */
13#undef HAVE_PROTOTYPES
14
15/* Define to 1 if you have the <stddef.h> header file. */
16#undef HAVE_STDDEF_H
17
18/* Define to 1 if you have the <stdlib.h> header file. */
19#undef HAVE_STDLIB_H
20
21/* Define to 1 if the system has the type `unsigned char'. */
22#undef HAVE_UNSIGNED_CHAR
23
24/* Define to 1 if the system has the type `unsigned short'. */
25#undef HAVE_UNSIGNED_SHORT
26
27/* Define if you want use complete types */
28#undef INCOMPLETE_TYPES_BROKEN
29
30/* Define if you have BSD-like bzero and bcopy */
31#undef NEED_BSD_STRINGS
32
33/* Define if you need short function names */
34#undef NEED_SHORT_EXTERNAL_NAMES
35
36/* Define if you have sys/types.h */
37#undef NEED_SYS_TYPES_H
38
39/* Define if shift is unsigned */
40#undef RIGHT_SHIFT_IS_UNSIGNED
41
Pierre Ossman59a39382009-03-09 13:15:56 +000042/* Use accelerated SIMD routines. */
43#undef WITH_SIMD
44
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000045/* Define to 1 if type `char' is unsigned and you are not using gcc. */
46#ifndef __CHAR_UNSIGNED__
47# undef __CHAR_UNSIGNED__
48#endif
49
50/* Define to empty if `const' does not conform to ANSI C. */
51#undef const
52
53/* Define to `__inline__' or `__inline' if that's what the C compiler
54 calls it, or to nothing if 'inline' is not supported under any name. */
55#ifndef __cplusplus
56#undef inline
57#endif
58
59/* Define to `unsigned int' if <sys/types.h> does not define. */
60#undef size_t