DRC | 36a6eec | 2010-10-08 08:05:44 +0000 | [diff] [blame] | 1 | /* 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 | |
DRC | ab64b62 | 2011-12-18 16:29:35 +0000 | [diff] [blame] | 6 | /* libjpeg-turbo version */ |
| 7 | #define LIBJPEG_TURBO_VERSION 0 |
| 8 | |
DRC | e372004 | 2010-11-23 06:50:14 +0000 | [diff] [blame] | 9 | /* Support arithmetic encoding */ |
| 10 | #undef C_ARITH_CODING_SUPPORTED |
| 11 | |
| 12 | /* Support arithmetic decoding */ |
| 13 | #undef D_ARITH_CODING_SUPPORTED |
| 14 | |
DRC | aee4f72 | 2014-08-09 23:06:07 +0000 | [diff] [blame] | 15 | /* |
| 16 | * Define BITS_IN_JSAMPLE as either |
| 17 | * 8 for 8-bit sample values (the usual setting) |
| 18 | * 12 for 12-bit sample values |
| 19 | * Only 8 and 12 are legal data precisions for lossy JPEG according to the |
| 20 | * JPEG standard, and the IJG code does not support anything else! |
| 21 | * We do not support run-time selection of data precision, sorry. |
| 22 | */ |
| 23 | |
| 24 | #define BITS_IN_JSAMPLE 8 /* use 8 or 12 */ |
| 25 | |
DRC | ff6961f | 2014-04-20 09:17:11 +0000 | [diff] [blame] | 26 | /* Define to 1 if you have the <locale.h> header file. */ |
| 27 | #undef HAVE_LOCALE_H |
DRC | ab70623 | 2013-01-18 23:42:31 +0000 | [diff] [blame] | 28 | |
Constantin Kaplinsky | 0ca4425 | 2008-09-28 05:08:48 +0000 | [diff] [blame] | 29 | /* Define to 1 if you have the <stddef.h> header file. */ |
| 30 | #undef HAVE_STDDEF_H |
| 31 | |
| 32 | /* Define to 1 if you have the <stdlib.h> header file. */ |
| 33 | #undef HAVE_STDLIB_H |
| 34 | |
DRC | ff6961f | 2014-04-20 09:17:11 +0000 | [diff] [blame] | 35 | /* Define to 1 if the system has the type `unsigned char'. */ |
Constantin Kaplinsky | 0ca4425 | 2008-09-28 05:08:48 +0000 | [diff] [blame] | 36 | #undef HAVE_UNSIGNED_CHAR |
| 37 | |
DRC | ff6961f | 2014-04-20 09:17:11 +0000 | [diff] [blame] | 38 | /* Define to 1 if the system has the type `unsigned short'. */ |
Constantin Kaplinsky | 0ca4425 | 2008-09-28 05:08:48 +0000 | [diff] [blame] | 39 | #undef HAVE_UNSIGNED_SHORT |
| 40 | |
DRC | ff6961f | 2014-04-20 09:17:11 +0000 | [diff] [blame] | 41 | /* Compiler does not support pointers to undefined structures. */ |
Constantin Kaplinsky | 0ca4425 | 2008-09-28 05:08:48 +0000 | [diff] [blame] | 42 | #undef INCOMPLETE_TYPES_BROKEN |
| 43 | |
DRC | ff6961f | 2014-04-20 09:17:11 +0000 | [diff] [blame] | 44 | /* Support in-memory source/destination managers */ |
| 45 | #undef MEM_SRCDST_SUPPORTED |
| 46 | |
| 47 | /* Define if you have BSD-like bzero and bcopy in <strings.h> rather than |
| 48 | memset/memcpy in <string.h>. */ |
Constantin Kaplinsky | 0ca4425 | 2008-09-28 05:08:48 +0000 | [diff] [blame] | 49 | #undef NEED_BSD_STRINGS |
| 50 | |
DRC | ff6961f | 2014-04-20 09:17:11 +0000 | [diff] [blame] | 51 | /* Define if you need to include <sys/types.h> to get size_t. */ |
Constantin Kaplinsky | 0ca4425 | 2008-09-28 05:08:48 +0000 | [diff] [blame] | 52 | #undef NEED_SYS_TYPES_H |
| 53 | |
DRC | ff6961f | 2014-04-20 09:17:11 +0000 | [diff] [blame] | 54 | /* Define if your (broken) compiler shifts signed values as if they were |
| 55 | unsigned. */ |
Constantin Kaplinsky | 0ca4425 | 2008-09-28 05:08:48 +0000 | [diff] [blame] | 56 | #undef RIGHT_SHIFT_IS_UNSIGNED |
| 57 | |
Pierre Ossman | 59a3938 | 2009-03-09 13:15:56 +0000 | [diff] [blame] | 58 | /* Use accelerated SIMD routines. */ |
| 59 | #undef WITH_SIMD |
| 60 | |
Constantin Kaplinsky | 0ca4425 | 2008-09-28 05:08:48 +0000 | [diff] [blame] | 61 | /* Define to 1 if type `char' is unsigned and you are not using gcc. */ |
| 62 | #ifndef __CHAR_UNSIGNED__ |
| 63 | # undef __CHAR_UNSIGNED__ |
| 64 | #endif |
| 65 | |
| 66 | /* Define to empty if `const' does not conform to ANSI C. */ |
| 67 | #undef const |
| 68 | |
Constantin Kaplinsky | 0ca4425 | 2008-09-28 05:08:48 +0000 | [diff] [blame] | 69 | /* Define to `unsigned int' if <sys/types.h> does not define. */ |
| 70 | #undef size_t |