1 /* config.h.  Manually derived from config.h.in, with the subset of defines
2  * that actually affect the library, given that most of them are meant for the
3  * tests, which we don't build. */
4 
5 /* Define if building universal (internal helper macro) */
6 /* #undef AC_APPLE_UNIVERSAL_BUILD */
7 
8 /* Define to 1 if the compiler supports __builtin_ctz and friends. */
9 #if defined(__GNUCC__)
10 #  define HAVE_BUILTIN_CTZ 1
11 #endif
12 
13 /* Define to 1 if the compiler supports __builtin_expect. */
14 #if defined(__GNUCC__)
15 # define HAVE_BUILTIN_EXPECT 1
16 #endif
17 
18 /* Define to 1 if you have the <byteswap.h> header file. */
19 #if defined(__linux__)
20 #  define HAVE_BYTESWAP_H 1
21 #endif
22 
23 /* Define to 1 if you have the <dlfcn.h> header file. */
24 /* #undef HAVE_DLFCN_H */
25 
26 /* Use the gflags package for command-line parsing. */
27 /* #undef HAVE_GFLAGS */
28 
29 /* Defined when Google Test is available. */
30 /* #undef HAVE_GTEST */
31 
32 /* Define to 1 if you have the <inttypes.h> header file. */
33 #define HAVE_INTTYPES_H 1
34 
35 /* Define to 1 if you have the `fastlz' library (-lfastlz). */
36 /* #undef HAVE_LIBFASTLZ */
37 
38 /* Define to 1 if you have the `lzf' library (-llzf). */
39 /* #undef HAVE_LIBLZF */
40 
41 /* Define to 1 if you have the `lzo2' library (-llzo2). */
42 /* #undef HAVE_LIBLZO2 */
43 
44 /* Define to 1 if you have the `quicklz' library (-lquicklz). */
45 /* #undef HAVE_LIBQUICKLZ */
46 
47 /* Define to 1 if you have the `z' library (-lz). */
48 /* #undef HAVE_LIBZ */
49 
50 /* Define to 1 if you have the <memory.h> header file. */
51 /* #undef HAVE_MEMORY_H */
52 
53 /* Define to 1 if you have the <stddef.h> header file. */
54 #define HAVE_STDDEF_H 1
55 
56 /* Define to 1 if you have the <stdint.h> header file. */
57 #define HAVE_STDINT_H 1
58 
59 /* Define to 1 if you have the <stdlib.h> header file. */
60 #define HAVE_STDLIB_H 1
61 
62 /* Define to 1 if you have the <strings.h> header file. */
63 /* #undef HAVE_STRINGS_H */
64 
65 /* Define to 1 if you have the <string.h> header file. */
66 #define HAVE_STRING_H 1
67 
68 /* Define to 1 if you have the <sys/byteswap.h> header file. */
69 /* #undef HAVE_SYS_BYTESWAP_H */
70 
71 /* Define to 1 if you have the <sys/endian.h> header file. */
72 /* #undef HAVE_SYS_ENDIAN_H */
73 
74 /* Define to 1 if you have the <sys/mman.h> header file. */
75 /* #undef HAVE_SYS_MMAN_H */
76 
77 /* Define to 1 if you have the <sys/resource.h> header file. */
78 /* #undef HAVE_SYS_RESOURCE_H */
79 
80 /* Define to 1 if you have the <sys/stat.h> header file. */
81 /* #undef HAVE_SYS_STAT_H */
82 
83 /* Define to 1 if you have the <sys/time.h> header file. */
84 /* #undef HAVE_SYS_TIME_H */
85 
86 /* Define to 1 if you have the <sys/types.h> header file. */
87 #if !defined(_MSC_VER)
88 #  define HAVE_SYS_TYPES_H 1
89 #endif
90 
91 /* Define to 1 if you have the <unistd.h> header file. */
92 #if !defined(_MSC_VER)
93 #  define HAVE_UNISTD_H 1
94 #endif
95 
96 /* Define to 1 if you have the <windows.h> header file. */
97 #if defined(_WIN32)
98 #  define HAVE_WINDOWS_H 1
99 #endif
100 
101 /* Define to the sub-directory in which libtool stores uninstalled libraries.
102    */
103 /* #undef LT_OBJDIR */
104 
105 /* Name of package */
106 /* #undef PACKAGE */
107 
108 /* Define to the address where bug reports for this package should be sent. */
109 /* #undef PACKAGE_BUGREPORT */
110 
111 /* Define to the full name of this package. */
112 /* #undef PACKAGE_NAME */
113 
114 /* Define to the full name and version of this package. */
115 /* #undef PACKAGE_STRING */
116 
117 /* Define to the one symbol short name of this package. */
118 /* #undef PACKAGE_TARNAME */
119 
120 /* Define to the home page for this package. */
121 /* #undef PACKAGE_URL */
122 
123 /* Define to the version of this package. */
124 /* #undef PACKAGE_VERSION */
125 
126 /* Define to 1 if you have the ANSI C header files. */
127 #define STDC_HEADERS 1
128 
129 /* Version number of package */
130 /* #undef VERSION */
131 
132 /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
133    significant byte first (like Motorola and SPARC, unlike Intel). */
134 #if defined(__GLIBC__)
135 #  include <endian.h>
136 #  if __BYTE_ORDER == __BIG_ENDIAN
137 #    define WORDS_BIGENDIAN 1
138 #  endif
139 #elif defined(__APPLE__)
140 #  include <machine/endian.h>
141 #  if __DARWIN_BYTE_ORDER == __DARWIN_BIG_ENDIAN
142 #    define WORDS_BIGENDIAN 1
143 #  endif
144 #endif
145 
146 /* Define to `unsigned int' if <sys/types.h> does not define. */
147 /* #undef size_t */
148 
149 /* Define to `int' if <sys/types.h> does not define. */
150 #if defined(_MSC_VER)
151 #  define ssize_t int
152 #endif
153