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