blob: 3a47c18fb3c259483f8d15e20e7415535ec78eaa [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 */
DRC6abd3912016-11-15 08:47:43 -06004#define JPEG_LIB_VERSION @JPEG_LIB_VERSION@
DRC36a6eec2010-10-08 08:05:44 +00005
DRCab64b622011-12-18 16:29:35 +00006/* libjpeg-turbo version */
DRC6abd3912016-11-15 08:47:43 -06007#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 */
DRC6abd3912016-11-15 08:47:43 -060010#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 */
DRC6abd3912016-11-15 08:47:43 -060013#cmakedefine C_ARITH_CODING_SUPPORTED
DRCe3720042010-11-23 06:50:14 +000014
15/* Support arithmetic decoding */
DRC6abd3912016-11-15 08:47:43 -060016#cmakedefine D_ARITH_CODING_SUPPORTED
17
18/* Support in-memory source/destination managers */
19#cmakedefine MEM_SRCDST_SUPPORTED
20
21/* Use accelerated SIMD routines. */
22#cmakedefine WITH_SIMD
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. */
DRC6abd3912016-11-15 08:47:43 -060036#cmakedefine HAVE_LOCALE_H
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. */
DRC6abd3912016-11-15 08:47:43 -060039#cmakedefine HAVE_STDDEF_H
Constantin Kaplinsky0ca44252008-09-28 05:08:48 +000040
41/* Define to 1 if you have the <stdlib.h> header file. */
DRC6abd3912016-11-15 08:47:43 -060042#cmakedefine HAVE_STDLIB_H
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. */
45#cmakedefine NEED_SYS_TYPES_H
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>. */
DRC6abd3912016-11-15 08:47:43 -060049#cmakedefine NEED_BSD_STRINGS
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'. */
52#cmakedefine HAVE_UNSIGNED_CHAR
53
54/* Define to 1 if the system has the type `unsigned short'. */
55#cmakedefine HAVE_UNSIGNED_SHORT
56
57/* Compiler does not support pointers to undefined structures. */
58#cmakedefine INCOMPLETE_TYPES_BROKEN
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. */
DRC6abd3912016-11-15 08:47:43 -060062#cmakedefine RIGHT_SHIFT_IS_UNSIGNED
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__
DRC6abd3912016-11-15 08:47:43 -060066 #cmakedefine __CHAR_UNSIGNED__
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 */