blob: 18a69a48142a9b710da6def2f09f8251ccd414a2 [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 */
DRC293263c2018-03-17 15:14:35 -05004#define JPEG_LIB_VERSION @JPEG_LIB_VERSION@
DRC36a6eec2010-10-08 08:05:44 +00005
DRCab64b622011-12-18 16:29:35 +00006/* libjpeg-turbo version */
DRC293263c2018-03-17 15:14:35 -05007#define LIBJPEG_TURBO_VERSION @VERSION@
DRCab64b622011-12-18 16:29:35 +00008
DRCf06cc122016-05-10 19:36:34 -05009/* libjpeg-turbo version in integer form */
DRC293263c2018-03-17 15:14:35 -050010#define LIBJPEG_TURBO_VERSION_NUMBER @LIBJPEG_TURBO_VERSION_NUMBER@
DRCf06cc122016-05-10 19:36:34 -050011
DRCe3720042010-11-23 06:50:14 +000012/* Support arithmetic encoding */
DRC2260b662018-08-31 12:55:33 -050013#cmakedefine C_ARITH_CODING_SUPPORTED 1
DRCe3720042010-11-23 06:50:14 +000014
15/* Support arithmetic decoding */
DRC2260b662018-08-31 12:55:33 -050016#cmakedefine D_ARITH_CODING_SUPPORTED 1
DRC6abd3912016-11-15 08:47:43 -060017
18/* Support in-memory source/destination managers */
DRC2260b662018-08-31 12:55:33 -050019#cmakedefine MEM_SRCDST_SUPPORTED 1
DRC6abd3912016-11-15 08:47:43 -060020
21/* Use accelerated SIMD routines. */
DRC2260b662018-08-31 12:55:33 -050022#cmakedefine WITH_SIMD 1
DRCe3720042010-11-23 06:50:14 +000023
DRCaee4f722014-08-09 23:06:07 +000024/*
25 * Define BITS_IN_JSAMPLE as either
26 * 8 for 8-bit sample values (the usual setting)
27 * 12 for 12-bit sample values
28 * Only 8 and 12 are legal data precisions for lossy JPEG according to the
29 * JPEG standard, and the IJG code does not support anything else!
30 * We do not support run-time selection of data precision, sorry.
31 */
32
DRC6abd3912016-11-15 08:47:43 -060033#define BITS_IN_JSAMPLE @BITS_IN_JSAMPLE@ /* use 8 or 12 */
DRCaee4f722014-08-09 23:06:07 +000034
DRCff6961f2014-04-20 09:17:11 +000035/* Define to 1 if you have the <locale.h> header file. */
DRC2260b662018-08-31 12:55:33 -050036#cmakedefine HAVE_LOCALE_H 1
DRCab706232013-01-18 23:42:31 +000037
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000038/* Define to 1 if you have the <stddef.h> header file. */
DRC2260b662018-08-31 12:55:33 -050039#cmakedefine HAVE_STDDEF_H 1
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000040
41/* Define to 1 if you have the <stdlib.h> header file. */
DRC2260b662018-08-31 12:55:33 -050042#cmakedefine HAVE_STDLIB_H 1
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000043
DRC6abd3912016-11-15 08:47:43 -060044/* Define if you need to include <sys/types.h> to get size_t. */
DRC2260b662018-08-31 12:55:33 -050045#cmakedefine NEED_SYS_TYPES_H 1
DRCff6961f2014-04-20 09:17:11 +000046
47/* Define if you have BSD-like bzero and bcopy in <strings.h> rather than
48 memset/memcpy in <string.h>. */
DRC2260b662018-08-31 12:55:33 -050049#cmakedefine NEED_BSD_STRINGS 1
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000050
DRC6abd3912016-11-15 08:47:43 -060051/* Define to 1 if the system has the type `unsigned char'. */
DRC2260b662018-08-31 12:55:33 -050052#cmakedefine HAVE_UNSIGNED_CHAR 1
DRC6abd3912016-11-15 08:47:43 -060053
54/* Define to 1 if the system has the type `unsigned short'. */
DRC2260b662018-08-31 12:55:33 -050055#cmakedefine HAVE_UNSIGNED_SHORT 1
DRC6abd3912016-11-15 08:47:43 -060056
57/* Compiler does not support pointers to undefined structures. */
DRC2260b662018-08-31 12:55:33 -050058#cmakedefine INCOMPLETE_TYPES_BROKEN 1
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000059
DRCff6961f2014-04-20 09:17:11 +000060/* Define if your (broken) compiler shifts signed values as if they were
61 unsigned. */
DRC2260b662018-08-31 12:55:33 -050062#cmakedefine RIGHT_SHIFT_IS_UNSIGNED 1
Pierre Ossman59a39382009-03-09 13:15:56 +000063
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000064/* Define to 1 if type `char' is unsigned and you are not using gcc. */
65#ifndef __CHAR_UNSIGNED__
DRC2260b662018-08-31 12:55:33 -050066 #cmakedefine __CHAR_UNSIGNED__ 1
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000067#endif
68
69/* Define to empty if `const' does not conform to ANSI C. */
DRC6abd3912016-11-15 08:47:43 -060070/* #undef const */
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000071
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000072/* Define to `unsigned int' if <sys/types.h> does not define. */
DRC6abd3912016-11-15 08:47:43 -060073/* #undef size_t */