Imported Upstream version 2.0.1
[platform/upstream/libjpeg-turbo.git] / jconfigint.h.in
1 /* libjpeg-turbo build number */
2 #define BUILD  "@BUILD@"
3
4 /* Compiler's inline keyword */
5 #undef inline
6
7 /* How to obtain function inlining. */
8 #define INLINE  @INLINE@
9
10 /* Define to the full name of this package. */
11 #define PACKAGE_NAME  "@CMAKE_PROJECT_NAME@"
12
13 /* Version number of package */
14 #define VERSION  "@VERSION@"
15
16 /* The size of `size_t', as computed by sizeof. */
17 #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