Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Side by Side Diff: config.h

Issue 10386084: Update libjpeg-turbo. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libjpeg_turbo/
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « cjpeg.c ('k') | djpeg.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 /* config.h. Generated from config.h.in by configure. */
2 /* config.h.in. Generated from configure.ac by autoheader. */
3
4 /* Build number */
5 #define BUILD "20120511"
6
7 /* Support arithmetic encoding */
8 /* #undef C_ARITH_CODING_SUPPORTED */
9
10 /* Support arithmetic decoding */
11 /* #undef D_ARITH_CODING_SUPPORTED */
12
13 /* Define to 1 if you have the <dlfcn.h> header file. */
14 #define HAVE_DLFCN_H 1
15
16 /* Define to 1 if you have the <inttypes.h> header file. */
17 #define HAVE_INTTYPES_H 1
18
19 /* Define to 1 if you have the <jni.h> header file. */
20 /* #undef HAVE_JNI_H */
21
22 /* Define to 1 if you have the `memcpy' function. */
23 #define HAVE_MEMCPY 1
24
25 /* Define to 1 if you have the <memory.h> header file. */
26 #define HAVE_MEMORY_H 1
27
28 /* Define to 1 if you have the `memset' function. */
29 #define HAVE_MEMSET 1
30
31 /* Define if your compiler supports prototypes */
32 #define HAVE_PROTOTYPES 1
33
34 /* Define to 1 if you have the <stddef.h> header file. */
35 #define HAVE_STDDEF_H 1
36
37 /* Define to 1 if you have the <stdint.h> header file. */
38 #define HAVE_STDINT_H 1
39
40 /* Define to 1 if you have the <stdlib.h> header file. */
41 #define HAVE_STDLIB_H 1
42
43 /* Define to 1 if you have the <strings.h> header file. */
44 #define HAVE_STRINGS_H 1
45
46 /* Define to 1 if you have the <string.h> header file. */
47 #define HAVE_STRING_H 1
48
49 /* Define to 1 if you have the <sys/stat.h> header file. */
50 #define HAVE_SYS_STAT_H 1
51
52 /* Define to 1 if you have the <sys/types.h> header file. */
53 #define HAVE_SYS_TYPES_H 1
54
55 /* Define to 1 if you have the <unistd.h> header file. */
56 #if !defined(_MSC_VER)
57 #define HAVE_UNISTD_H 1
58 #endif
59
60 /* Define to 1 if the system has the type `unsigned char'. */
61 #define HAVE_UNSIGNED_CHAR 1
62
63 /* Define to 1 if the system has the type `unsigned short'. */
64 #define HAVE_UNSIGNED_SHORT 1
65
66 /* Compiler does not support pointers to undefined structures. */
67 /* #undef INCOMPLETE_TYPES_BROKEN */
68
69 /* How to obtain function inlining. */
70 #ifndef INLINE
71 #if defined(__GNUC__)
72 #define INLINE __attribute__((always_inline))
73 #elif defined(_MSC_VER)
74 #define INLINE __forceinline
75 #else
76 #define INLINE
77 #endif
78 #endif
79
80 /* libjpeg API version */
81 #define JPEG_LIB_VERSION 62
82
83 /* libjpeg-turbo version */
84 #define LIBJPEG_TURBO_VERSION 1.2.80
85
86 /* Define to the sub-directory in which libtool stores uninstalled libraries.
87 */
88 #define LT_OBJDIR ".libs/"
89
90 /* Define if you have BSD-like bzero and bcopy */
91 /* #undef NEED_BSD_STRINGS */
92
93 /* Define if you need short function names */
94 /* #undef NEED_SHORT_EXTERNAL_NAMES */
95
96 /* Define if you have sys/types.h */
97 #define NEED_SYS_TYPES_H 1
98
99 /* Name of package */
100 #define PACKAGE "libjpeg-turbo"
101
102 /* Define to the address where bug reports for this package should be sent. */
103 #define PACKAGE_BUGREPORT ""
104
105 /* Define to the full name of this package. */
106 #define PACKAGE_NAME "libjpeg-turbo"
107
108 /* Define to the full name and version of this package. */
109 #define PACKAGE_STRING "libjpeg-turbo 1.2.80"
110
111 /* Define to the one symbol short name of this package. */
112 #define PACKAGE_TARNAME "libjpeg-turbo"
113
114 /* Define to the home page for this package. */
115 #define PACKAGE_URL ""
116
117 /* Define to the version of this package. */
118 #define PACKAGE_VERSION "1.2.80"
119
120 /* Define if shift is unsigned */
121 /* #undef RIGHT_SHIFT_IS_UNSIGNED */
122
123 /* Define to 1 if you have the ANSI C header files. */
124 #define STDC_HEADERS 1
125
126 /* Version number of package */
127 #define VERSION "1.2.80"
128
129 /* Use accelerated SIMD routines. */
130 #define WITH_SIMD 1
131
132 /* Define to 1 if type `char' is unsigned and you are not using gcc. */
133 #ifndef __CHAR_UNSIGNED__
134 /* # undef __CHAR_UNSIGNED__ */
135 #endif
136
137 /* Define to empty if `const' does not conform to ANSI C. */
138 /* #undef const */
139
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. */
142 #ifndef __cplusplus
143 /* #undef inline */
144 #endif
145
146 /* Define to `unsigned int' if <sys/types.h> does not define. */
147 /* #undef size_t */
OLDNEW
« no previous file with comments | « cjpeg.c ('k') | djpeg.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698