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

Unified Diff: jconfigint.h

Issue 1953443002: Update to libjpeg_turbo 1.4.90 (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/libjpeg_turbo.git@master
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « jconfig.h.in ('k') | jconfigint.h.in » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: jconfigint.h
diff --git a/jconfigint.h b/jconfigint.h
new file mode 100644
index 0000000000000000000000000000000000000000..587f8ca21e59bf816b70ff5fb4b46dcbc1f19086
--- /dev/null
+++ b/jconfigint.h
@@ -0,0 +1,31 @@
+/* jconfigint.h. Generated from jconfigint.h.in by configure. */
+/* libjpeg-turbo build number */
+#define BUILD ""
+
+/* How to obtain function inlining. */
+#ifndef INLINE
+ #ifndef TURBO_FOR_WINDOWS
+ #define INLINE inline __attribute__((always_inline))
+ #else
+ #if defined(__GNUC__)
+ #define INLINE inline __attribute__((always_inline))
+ #elif defined(_MSC_VER)
+ #define INLINE __forceinline
+ #else
+ #define INLINE
+ #endif
+ #endif
+#endif
+
+/* Define to the full name of this package. */
+#define PACKAGE_NAME "libjpeg-turbo"
+
+/* Version number of package */
+#define VERSION "1.4.90"
+
+/* The size of `size_t', as computed by sizeof. */
+#if __WORDSIZE==64 || defined(_WIN64)
+#define SIZEOF_SIZE_T 8
+#else
+#define SIZEOF_SIZE_T 4
+#endif
« no previous file with comments | « jconfig.h.in ('k') | jconfigint.h.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698