1#ifndef THIRD_PARTY_SNAPPY_OPENSOURCE_CMAKE_CONFIG_H_
2#define THIRD_PARTY_SNAPPY_OPENSOURCE_CMAKE_CONFIG_H_
3
4/* Define to 1 if the compiler supports __attribute__((always_inline)). */
5#define HAVE_ATTRIBUTE_ALWAYS_INLINE 1
6
7/* Define to 1 if the compiler supports __builtin_ctz and friends. */
8#define HAVE_BUILTIN_CTZ 1
9
10/* Define to 1 if the compiler supports __builtin_expect. */
11#define HAVE_BUILTIN_EXPECT 1
12
13/* Define to 1 if you have a definition for mmap() in <sys/mman.h>. */
14#define HAVE_FUNC_MMAP 1
15
16/* Define to 1 if you have a definition for sysconf() in <unistd.h>. */
17#define HAVE_FUNC_SYSCONF 1
18
19/* Define to 1 if you have the `lzo2' library (-llzo2). */
20#define HAVE_LIBLZO2 0
21
22/* Define to 1 if you have the `z' library (-lz). */
23#define HAVE_LIBZ 1
24
25/* Define to 1 if you have the `lz4' library (-llz4). */
26#define HAVE_LIBLZ4 0
27
28/* Define to 1 if you have the <sys/mman.h> header file. */
29#define HAVE_SYS_MMAN_H 1
30
31/* Define to 1 if you have the <sys/resource.h> header file. */
32#define HAVE_SYS_RESOURCE_H 1
33
34/* Define to 1 if you have the <sys/time.h> header file. */
35#define HAVE_SYS_TIME_H 1
36
37/* Define to 1 if you have the <sys/uio.h> header file. */
38#define HAVE_SYS_UIO_H 1
39
40/* Define to 1 if you have the <unistd.h> header file. */
41#define HAVE_UNISTD_H 1
42
43/* Define to 1 if you have the <windows.h> header file. */
44#define HAVE_WINDOWS_H 0
45
46/* Define to 1 if you target processors with SSSE3+ and have <tmmintrin.h>. */
47#define SNAPPY_HAVE_SSSE3 0
48
49/* Define to 1 if you target processors with BMI2+ and have <bmi2intrin.h>. */
50#define SNAPPY_HAVE_BMI2 0
51
52/* Define to 1 if you target processors with NEON and have <arm_neon.h>. */
53#define SNAPPY_HAVE_NEON 0
54
55/* Define to 1 if your processor stores words with the most significant byte
56 first (like Motorola and SPARC, unlike Intel and VAX). */
57#define SNAPPY_IS_BIG_ENDIAN 0
58
59#endif // THIRD_PARTY_SNAPPY_OPENSOURCE_CMAKE_CONFIG_H_
60