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. */
5 /* Define to 1 if the compiler supports __builtin_ctz and friends. */
7 # define HAVE_BUILTIN_CTZ 1
10 /* Define to 1 if the compiler supports __builtin_expect. */
11 #if defined(__GNUCC__)
12 # define HAVE_BUILTIN_EXPECT 1
15 /* Define to 1 if you have the <byteswap.h> header file. */
16 #if defined(__linux__)
17 # define HAVE_BYTESWAP_H 1
20 /* Define to 1 if you have the <dlfcn.h> header file. */
23 /* Use the gflags package for command-line parsing. */
26 /* Defined when Google Test is available. */
29 /* Define to 1 if you have the <inttypes.h> header file. */
30 #define HAVE_INTTYPES_H 1
32 /* Define to 1 if you have the `fastlz' library (-lfastlz). */
35 /* Define to 1 if you have the `lzf' library (-llzf). */
38 /* Define to 1 if you have the `lzo2' library (-llzo2). */
41 /* Define to 1 if you have the `quicklz' library (-lquicklz). */
42 #undef HAVE_LIBQUICKLZ
44 /* Define to 1 if you have the `z' library (-lz). */
47 /* Define to 1 if you have the <memory.h> header file. */
50 /* Define to 1 if you have the <stddef.h> header file. */
51 #define HAVE_STDDEF_H 1
53 /* Define to 1 if you have the <stdint.h> header file. */
54 #define HAVE_STDINT_H 1
56 /* Define to 1 if you have the <stdlib.h> header file. */
57 #define HAVE_STDLIB_H 1
59 /* Define to 1 if you have the <strings.h> header file. */
62 /* Define to 1 if you have the <string.h> header file. */
63 #define HAVE_STRING_H 1
65 /* Define to 1 if you have the <sys/byteswap.h> header file. */
66 #undef HAVE_SYS_BYTESWAP_H
68 /* Define to 1 if you have the <sys/endian.h> header file. */
69 #undef HAVE_SYS_ENDIAN_H
71 /* Define to 1 if you have the <sys/mman.h> header file. */
72 #undef HAVE_SYS_MMAN_H
74 /* Define to 1 if you have the <sys/resource.h> header file. */
75 #undef HAVE_SYS_RESOURCE_H
77 /* Define to 1 if you have the <sys/stat.h> header file. */
78 #undef HAVE_SYS_STAT_H
80 /* Define to 1 if you have the <sys/types.h> header file. */
81 #define HAVE_SYS_TYPES_H 1
83 /* Define to 1 if you have the <unistd.h> header file. */
85 # define HAVE_UNISTD_H 1
88 /* Define to 1 if you have the <windows.h> header file. */
90 # define HAVE_WINDOWS_H 1
93 /* Define to the sub-directory in which libtool stores uninstalled libraries.
100 /* Define to the address where bug reports for this package should be sent. */
101 #undef PACKAGE_BUGREPORT
103 /* Define to the full name of this package. */
106 /* Define to the full name and version of this package. */
107 #undef PACKAGE_STRING
109 /* Define to the one symbol short name of this package. */
110 #undef PACKAGE_TARNAME
112 /* Define to the home page for this package. */
115 /* Define to the version of this package. */
116 #undef PACKAGE_VERSION
118 /* Define to 1 if you have the ANSI C header files. */
119 #define STDC_HEADERS 1
121 /* Version number of package */
124 /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
125 significant byte first (like Motorola and SPARC, unlike Intel). */
126 #if defined(__GLIBC__)
128 # if __BYTE_ORDER == __BIG_ENDIAN
129 # define WORDS_BIGENDIAN 1
131 #elif defined(__APPLE__)
132 # include <machine/endian.h>
133 # if __DARWIN_BYTE_ORDER == __DARWIN_BIG_ENDIAN
134 # define WORDS_BIGENDIAN 1