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 __builtin_ctz and friends. */ |
5 | #define HAVE_BUILTIN_CTZ 1 |
6 | |
7 | /* Define to 1 if the compiler supports __builtin_expect. */ |
8 | #define HAVE_BUILTIN_EXPECT 1 |
9 | |
10 | /* Define to 1 if you have the <byteswap.h> header file. */ |
11 | #define HAVE_BYTESWAP_H 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 to use the gflags package for command-line parsing. */ |
20 | /* #undef HAVE_GFLAGS */ |
21 | |
22 | /* Define to 1 if you have Google Test. */ |
23 | /* #undef HAVE_GTEST */ |
24 | |
25 | /* Define to 1 if you have the `lzo2' library (-llzo2). */ |
26 | /* #undef HAVE_LIBLZO2 */ |
27 | |
28 | /* Define to 1 if you have the `z' library (-lz). */ |
29 | #define HAVE_LIBZ 1 |
30 | |
31 | /* Define to 1 if you have the <sys/endian.h> header file. */ |
32 | /* #undef HAVE_SYS_ENDIAN_H */ |
33 | |
34 | /* Define to 1 if you have the <sys/mman.h> header file. */ |
35 | #define HAVE_SYS_MMAN_H 1 |
36 | |
37 | /* Define to 1 if you have the <sys/resource.h> header file. */ |
38 | #define HAVE_SYS_RESOURCE_H 1 |
39 | |
40 | /* Define to 1 if you have the <sys/time.h> header file. */ |
41 | #define HAVE_SYS_TIME_H 1 |
42 | |
43 | /* Define to 1 if you have the <sys/uio.h> header file. */ |
44 | #define HAVE_SYS_UIO_H 1 |
45 | |
46 | /* Define to 1 if you have the <unistd.h> header file. */ |
47 | #define HAVE_UNISTD_H 1 |
48 | |
49 | /* Define to 1 if you have the <windows.h> header file. */ |
50 | /* #undef HAVE_WINDOWS_H */ |
51 | |
52 | /* Define to 1 if you target processors with SSSE3+ and have <tmmintrin.h>. */ |
53 | #define SNAPPY_HAVE_SSSE3 1 |
54 | |
55 | /* Define to 1 if you target processors with BMI2+ and have <bmi2intrin.h>. */ |
56 | #define SNAPPY_HAVE_BMI2 0 |
57 | |
58 | /* Define to 1 if your processor stores words with the most significant byte |
59 | first (like Motorola and SPARC, unlike Intel and VAX). */ |
60 | /* #undef SNAPPY_IS_BIG_ENDIAN */ |
61 | |
62 | #endif // THIRD_PARTY_SNAPPY_OPENSOURCE_CMAKE_CONFIG_H_ |
63 | |