blob: 55df05367691b3b3c3c5b26153fd5e180bb7d6aa [file] [log] [blame]
Leon Scroggins IIIbd7903e2018-02-28 14:05:04 -05001/* libjpeg-turbo build number */
Leon Scroggins III3993b372018-07-16 10:43:45 -04002#define BUILD "@BUILD@"
Leon Scroggins IIIbd7903e2018-02-28 14:05:04 -05003
4/* Compiler's inline keyword */
5#undef inline
6
7/* How to obtain function inlining. */
Leon Scroggins III3993b372018-07-16 10:43:45 -04008#define INLINE @INLINE@
Leon Scroggins IIIbd7903e2018-02-28 14:05:04 -05009
10/* Define to the full name of this package. */
Leon Scroggins III3993b372018-07-16 10:43:45 -040011#define PACKAGE_NAME "@CMAKE_PROJECT_NAME@"
Leon Scroggins IIIbd7903e2018-02-28 14:05:04 -050012
13/* Version number of package */
Leon Scroggins III3993b372018-07-16 10:43:45 -040014#define VERSION "@VERSION@"
Leon Scroggins IIIbd7903e2018-02-28 14:05:04 -050015
16/* The size of `size_t', as computed by sizeof. */
Leon Scroggins III3993b372018-07-16 10:43:45 -040017#define SIZEOF_SIZE_T @SIZE_T@
18
19/* Define if your compiler has __builtin_ctzl() and sizeof(unsigned long) == sizeof(size_t). */
20#cmakedefine HAVE_BUILTIN_CTZL
21
22/* Define to 1 if you have the <intrin.h> header file. */
23#cmakedefine HAVE_INTRIN_H
24
25#if defined(_MSC_VER) && defined(HAVE_INTRIN_H)
26#if (SIZEOF_SIZE_T == 8)
27#define HAVE_BITSCANFORWARD64
28#elif (SIZEOF_SIZE_T == 4)
29#define HAVE_BITSCANFORWARD
30#endif
31#endif