config.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #ifndef THIRD_PARTY_SNAPPY_OPENSOURCE_CMAKE_CONFIG_H_
  2. #define THIRD_PARTY_SNAPPY_OPENSOURCE_CMAKE_CONFIG_H_
  3. /* Define to 1 if the compiler supports __attribute__((always_inline)). */
  4. #define HAVE_ATTRIBUTE_ALWAYS_INLINE 1
  5. /* Define to 1 if the compiler supports __builtin_ctz and friends. */
  6. #define HAVE_BUILTIN_CTZ 1
  7. /* Define to 1 if the compiler supports __builtin_expect. */
  8. #define HAVE_BUILTIN_EXPECT 1
  9. /* Define to 1 if you have a definition for mmap() in <sys/mman.h>. */
  10. #define HAVE_FUNC_MMAP 1
  11. /* Define to 1 if you have a definition for sysconf() in <unistd.h>. */
  12. #define HAVE_FUNC_SYSCONF 1
  13. /* Define to 1 to use the gflags package for command-line parsing. */
  14. /* #undef HAVE_GFLAGS */
  15. /* Define to 1 if you have Google Test. */
  16. /* #undef HAVE_GTEST */
  17. /* Define to 1 if you have the `lzo2' library (-llzo2). */
  18. /* #undef HAVE_LIBLZO2 */
  19. /* Define to 1 if you have the `z' library (-lz). */
  20. #define HAVE_LIBZ 1
  21. /* Define to 1 if you have the <sys/mman.h> header file. */
  22. #define HAVE_SYS_MMAN_H 1
  23. /* Define to 1 if you have the <sys/resource.h> header file. */
  24. #define HAVE_SYS_RESOURCE_H 1
  25. /* Define to 1 if you have the <sys/time.h> header file. */
  26. #define HAVE_SYS_TIME_H 1
  27. /* Define to 1 if you have the <sys/uio.h> header file. */
  28. #define HAVE_SYS_UIO_H 1
  29. /* Define to 1 if you have the <unistd.h> header file. */
  30. #define HAVE_UNISTD_H 1
  31. /* Define to 1 if you have the <windows.h> header file. */
  32. /* #undef HAVE_WINDOWS_H */
  33. /* Define to 1 if you target processors with SSSE3+ and have <tmmintrin.h>. */
  34. #define SNAPPY_HAVE_SSSE3 0
  35. /* Define to 1 if you target processors with BMI2+ and have <bmi2intrin.h>. */
  36. #define SNAPPY_HAVE_BMI2 0
  37. /* Define to 1 if your processor stores words with the most significant byte
  38. first (like Motorola and SPARC, unlike Intel and VAX). */
  39. /* #undef SNAPPY_IS_BIG_ENDIAN */
  40. #endif // THIRD_PARTY_SNAPPY_OPENSOURCE_CMAKE_CONFIG_H_