config.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. /* config.h. Generated from config.h.in by configure. */
  2. /* config.h.in. Generated from configure.ac by autoheader. */
  3. /* Define if building universal (internal helper macro) */
  4. /* #undef AC_APPLE_UNIVERSAL_BUILD */
  5. /* Define to 1 if the compiler supports __builtin_expect. */
  6. #if _MSC_VER
  7. #define HAVE_BUILTIN_EXPECT 0
  8. #else
  9. #define HAVE_BUILTIN_EXPECT 1
  10. #endif
  11. /* Define to 1 if you have the <dlfcn.h> header file. */
  12. #define HAVE_DLFCN_H 1
  13. /* Define to 1 if you have the <inttypes.h> header file. */
  14. #define HAVE_INTTYPES_H 1
  15. /* Define to 1 if you have the <memory.h> header file. */
  16. #define HAVE_MEMORY_H 1
  17. /* Define to 1 if you have the <stdint.h> header file. */
  18. #define HAVE_STDINT_H 1
  19. /* Define to 1 if you have the <stdlib.h> header file. */
  20. #define HAVE_STDLIB_H 1
  21. /* Define to 1 if you have the <strings.h> header file. */
  22. #define HAVE_STRINGS_H 1
  23. /* Define to 1 if you have the <string.h> header file. */
  24. #define HAVE_STRING_H 1
  25. /* Define to 1 if you have the <sys/stat.h> header file. */
  26. #define HAVE_SYS_STAT_H 1
  27. /* Define to 1 if you have the <sys/types.h> header file. */
  28. #define HAVE_SYS_TYPES_H 1
  29. /* Define to 1 if you have the <unistd.h> header file. */
  30. #define HAVE_UNISTD_H 1
  31. /* Define to the sub-directory in which libtool stores uninstalled libraries.
  32. */
  33. #define LT_OBJDIR ".libs/"
  34. /* Define to the address where bug reports for this package should be sent. */
  35. #define PACKAGE_BUGREPORT "cityhash-discuss@googlegroups.com"
  36. /* Define to the full name of this package. */
  37. #define PACKAGE_NAME "CityHash"
  38. /* Define to the full name and version of this package. */
  39. #define PACKAGE_STRING "CityHash 1.0.2"
  40. /* Define to the one symbol short name of this package. */
  41. #define PACKAGE_TARNAME "cityhash"
  42. /* Define to the home page for this package. */
  43. #define PACKAGE_URL ""
  44. /* Define to the version of this package. */
  45. #define PACKAGE_VERSION "1.0.2"
  46. /* Define to 1 if you have the ANSI C header files. */
  47. #define STDC_HEADERS 1
  48. /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
  49. significant byte first (like Motorola and SPARC, unlike Intel). */
  50. #if defined AC_APPLE_UNIVERSAL_BUILD
  51. # if defined __BIG_ENDIAN__
  52. # define WORDS_BIGENDIAN 1
  53. # endif
  54. #else
  55. # ifndef WORDS_BIGENDIAN
  56. /* # undef WORDS_BIGENDIAN */
  57. # endif
  58. #endif
  59. /* Define for Solaris 2.5.1 so the uint32_t typedef from <sys/synch.h>,
  60. <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
  61. #define below would cause a syntax error. */
  62. /* #undef _UINT32_T */
  63. /* Define for Solaris 2.5.1 so the uint64_t typedef from <sys/synch.h>,
  64. <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
  65. #define below would cause a syntax error. */
  66. /* #undef _UINT64_T */
  67. /* Define for Solaris 2.5.1 so the uint8_t typedef from <sys/synch.h>,
  68. <pthread.h>, or <semaphore.h> is not used. If the typedef were allowed, the
  69. #define below would cause a syntax error. */
  70. /* #undef _UINT8_T */
  71. /* Define to `__inline__' or `__inline' if that's what the C compiler
  72. calls it, or to nothing if 'inline' is not supported under any name. */
  73. #ifndef __cplusplus
  74. /* #undef inline */
  75. #endif
  76. /* Define to `unsigned int' if <sys/types.h> does not define. */
  77. /* #undef size_t */
  78. /* Define to `int' if <sys/types.h> does not define. */
  79. /* #undef ssize_t */
  80. /* Define to the type of an unsigned integer type of width exactly 32 bits if
  81. such a type exists and the standard includes do not define it. */
  82. /* #undef uint32_t */
  83. /* Define to the type of an unsigned integer type of width exactly 64 bits if
  84. such a type exists and the standard includes do not define it. */
  85. /* #undef uint64_t */
  86. /* Define to the type of an unsigned integer type of width exactly 8 bits if
  87. such a type exists and the standard includes do not define it. */
  88. /* #undef uint8_t */
  89. #ifdef _MSC_VER
  90. #include <basetsd.h>
  91. typedef SSIZE_T ssize_t;
  92. #else
  93. #include <sys/types.h>
  94. #endif