OLD | NEW |
(Empty) | |
| 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_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 the <dlfcn.h> header file. */ |
| 10 #define HAVE_DLFCN_H 1 |
| 11 /* Use the gflags package for command-line parsing. */ |
| 12 /* #undef HAVE_GFLAGS */ |
| 13 /* Defined when Google Test is available. */ |
| 14 /* #undef HAVE_GTEST */ |
| 15 /* Define to 1 if you have the <inttypes.h> header file. */ |
| 16 #define HAVE_INTTYPES_H 1 |
| 17 /* Define to 1 if you have the `fastlz' library (-lfastlz). */ |
| 18 /* #undef HAVE_LIBFASTLZ */ |
| 19 /* Define to 1 if you have the `lzf' library (-llzf). */ |
| 20 /* #undef HAVE_LIBLZF */ |
| 21 /* Define to 1 if you have the `lzo2' library (-llzo2). */ |
| 22 /* #undef HAVE_LIBLZO2 */ |
| 23 /* Define to 1 if you have the `quicklz' library (-lquicklz). */ |
| 24 /* #undef HAVE_LIBQUICKLZ */ |
| 25 /* Define to 1 if you have the `z' library (-lz). */ |
| 26 #define HAVE_LIBZ 1 |
| 27 /* Define to 1 if you have the <memory.h> header file. */ |
| 28 #define HAVE_MEMORY_H 1 |
| 29 /* Define to 1 if you have the <stddef.h> header file. */ |
| 30 #define HAVE_STDDEF_H 1 |
| 31 /* Define to 1 if you have the <stdint.h> header file. */ |
| 32 #define HAVE_STDINT_H 1 |
| 33 /* Define to 1 if you have the <stdlib.h> header file. */ |
| 34 #define HAVE_STDLIB_H 1 |
| 35 /* Define to 1 if you have the <strings.h> header file. */ |
| 36 #define HAVE_STRINGS_H 1 |
| 37 /* Define to 1 if you have the <string.h> header file. */ |
| 38 #define HAVE_STRING_H 1 |
| 39 /* Define to 1 if you have the <sys/stat.h> header file. */ |
| 40 #define HAVE_SYS_STAT_H 1 |
| 41 /* Define to 1 if you have the <sys/types.h> header file. */ |
| 42 #define HAVE_SYS_TYPES_H 1 |
| 43 /* Define to 1 if you have the <unistd.h> header file. */ |
| 44 #define HAVE_UNISTD_H 1 |
| 45 /* Define to the sub-directory in which libtool stores uninstalled libraries. |
| 46 * */ |
| 47 #define LT_OBJDIR ".libs/" |
| 48 /* Name of package */ |
| 49 #define PACKAGE "snappy" |
| 50 /* Define to the address where bug reports for this package should be sent. */ |
| 51 #define PACKAGE_BUGREPORT "" |
| 52 /* Define to the full name of this package. */ |
| 53 #define PACKAGE_NAME "snappy" |
| 54 /* Define to the full name and version of this package. */ |
| 55 #define PACKAGE_STRING "snappy 1.0.5" |
| 56 /* Define to the one symbol short name of this package. */ |
| 57 #define PACKAGE_TARNAME "snappy" |
| 58 /* Define to the home page for this package. */ |
| 59 #define PACKAGE_URL "" |
| 60 /* Define to the version of this package. */ |
| 61 #define PACKAGE_VERSION "1.0.5" |
| 62 /* Define to 1 if you have the ANSI C header files. */ |
| 63 #define STDC_HEADERS 1 |
| 64 /* Version number of package */ |
| 65 #define VERSION "1.0.5" |
| 66 /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most |
| 67 * significant byte first (like Motorola and SPARC, unlike Intel). */ |
| 68 #if defined AC_APPLE_UNIVERSAL_BUILD |
| 69 #if defined __BIG_ENDIAN__ |
| 70 #define WORDS_BIGENDIAN 1 |
| 71 #endif |
| 72 #else |
| 73 #ifndef WORDS_BIGENDIAN |
| 74 /* # undef WORDS_BIGENDIAN */ |
| 75 #endif |
| 76 #endif |
OLD | NEW |