diff options
author | Tom Hudson <tomhudson@google.com> | 2016-05-04 13:22:56 -0400 |
---|---|---|
committer | Tom Hudson <tomhudson@google.com> | 2016-05-04 13:22:56 -0400 |
commit | 0d47d2d3a728e78676a15b1d818cc668cb7e5a9c (patch) | |
tree | 044a430eeaa2dec4d6de7b624da15fda1b8ed25f /jconfigint.h | |
parent | 9d35298a6223278a66423f828a949d93d94d5911 (diff) |
Update to libjpeg_turbo 1.4.90
(Duplicate of https://codereview.chromium.org/1939823002/ for landing.)
TBR=noel@chromium.org,thakis@chromium.org
BUG=608347, 398235, 591927
Review URL: https://codereview.chromium.org/1953443002 .
Diffstat (limited to 'jconfigint.h')
-rw-r--r-- | jconfigint.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/jconfigint.h b/jconfigint.h new file mode 100644 index 0000000..587f8ca --- /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 |