Home | History | Annotate | Download | only in src
      1 /* src/config.h.  Generated from config.h.in by configure.  */
      2 /* src/config.h.in.  Generated from configure.ac by autoheader.  */
      3 
      4 /* Always the empty-string on non-windows systems. On windows, should be
      5    "__declspec(dllexport)". This way, when we compile the dll, we export our
      6    functions/classes. It's safe to define this here because config.h is only
      7    used internally, to compile the DLL, and every DLL source file #includes
      8    "config.h" before anything else. */
      9 #define GFLAGS_DLL_DECL /**/
     10 
     11 /* Namespace for Google classes */
     12 #define GOOGLE_NAMESPACE ::google
     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 <ext/rope> header file. */
     18 /* #undef HAVE_EXT_ROPE */
     19 
     20 /* Define to 1 if you have the <fnmatch.h> header file. */
     21 #define HAVE_FNMATCH_H 1
     22 
     23 /* Define to 1 if you have the <getopt.h> header file. */
     24 #define HAVE_GETOPT_H 1
     25 
     26 /* Define to 1 if you have the `gettimeofday' function. */
     27 #define HAVE_GETTIMEOFDAY 1
     28 
     29 /* Define to 1 if you have the <inttypes.h> header file. */
     30 #define HAVE_INTTYPES_H 1
     31 
     32 /* Define to 1 if you have the <malloc.h> header file. */
     33 #define HAVE_MALLOC_H 1
     34 
     35 /* Define to 1 if you have the `memalign' function. */
     36 #define HAVE_MEMALIGN 1
     37 
     38 /* Define to 1 if you have the <memory.h> header file. */
     39 #define HAVE_MEMORY_H 1
     40 
     41 /* Define to 1 if you have the `mprotect' function. */
     42 #define HAVE_MPROTECT 1
     43 
     44 /* define if the compiler implements namespaces */
     45 #define HAVE_NAMESPACES 1
     46 
     47 /* Define to 1 if you have the `posix_memalign' function. */
     48 #define HAVE_POSIX_MEMALIGN 1
     49 
     50 /* Define if you have POSIX threads libraries and header files. */
     51 #define HAVE_PTHREAD 1
     52 
     53 /* Define to 1 if you have the `putenv' function. */
     54 #define HAVE_PUTENV 1
     55 
     56 /* Define to 1 if you have the `QueryPerformanceCounter' function. */
     57 /* #undef HAVE_QUERYPERFORMANCECOUNTER */
     58 
     59 /* Define to 1 if you have the `setenv' function. */
     60 #define HAVE_SETENV 1
     61 
     62 /* Define to 1 if you have the <stdint.h> header file. */
     63 #define HAVE_STDINT_H 1
     64 
     65 /* Define to 1 if you have the <stdlib.h> header file. */
     66 #define HAVE_STDLIB_H 1
     67 
     68 /* Define to 1 if you have the <strings.h> header file. */
     69 #define HAVE_STRINGS_H 1
     70 
     71 /* Define to 1 if you have the <string.h> header file. */
     72 #define HAVE_STRING_H 1
     73 
     74 /* Define to 1 if you have the `strtoll' function. */
     75 #define HAVE_STRTOLL 1
     76 
     77 /* Define to 1 if you have the `strtoq' function. */
     78 #define HAVE_STRTOQ 1
     79 
     80 /* Define to 1 if you have the <sys/mman.h> header file. */
     81 #define HAVE_SYS_MMAN_H 1
     82 
     83 /* Define to 1 if you have the <sys/stat.h> header file. */
     84 #define HAVE_SYS_STAT_H 1
     85 
     86 /* Define to 1 if you have the <sys/time.h> header file. */
     87 #define HAVE_SYS_TIME_H 1
     88 
     89 /* Define to 1 if you have the <sys/types.h> header file. */
     90 #define HAVE_SYS_TYPES_H 1
     91 
     92 /* Define to 1 if you have the <unistd.h> header file. */
     93 #define HAVE_UNISTD_H 1
     94 
     95 /* Define to 1 if you have the <windows.h> header file. */
     96 /* #undef HAVE_WINDOWS_H */
     97 
     98 /* define if your compiler has __attribute__ */
     99 #define HAVE___ATTRIBUTE__ 1
    100 
    101 /* Define to the sub-directory in which libtool stores uninstalled libraries.
    102    */
    103 #define LT_OBJDIR ".libs/"
    104 
    105 /* Name of package */
    106 #define PACKAGE "open-vcdiff"
    107 
    108 /* Define to the address where bug reports for this package should be sent. */
    109 #define PACKAGE_BUGREPORT "opensource (at) google.com"
    110 
    111 /* Define to the full name of this package. */
    112 #define PACKAGE_NAME "open-vcdiff"
    113 
    114 /* Define to the full name and version of this package. */
    115 #define PACKAGE_STRING "open-vcdiff 0.8.3"
    116 
    117 /* Define to the one symbol short name of this package. */
    118 #define PACKAGE_TARNAME "open-vcdiff"
    119 
    120 /* Define to the home page for this package. */
    121 #define PACKAGE_URL ""
    122 
    123 /* Define to the version of this package. */
    124 #define PACKAGE_VERSION "0.8.3"
    125 
    126 /* Define to necessary symbol if this constant uses a non-standard name on
    127    your system. */
    128 /* #undef PTHREAD_CREATE_JOINABLE */
    129 
    130 /* Define to 1 if you have the ANSI C header files. */
    131 #define STDC_HEADERS 1
    132 
    133 /* the namespace where STL code like vector<> is defined */
    134 #define STL_NAMESPACE std
    135 
    136 /* Use custom compare function instead of memcmp */
    137 #define VCDIFF_USE_BLOCK_COMPARE_WORDS 1
    138 
    139 /* Version number of package */
    140 #define VERSION "0.8.3"
    141 
    142 /* Stops putting the code inside the Google namespace */
    143 #define _END_GOOGLE_NAMESPACE_ }
    144 
    145 /* Puts following code inside the Google namespace */
    146 #define _START_GOOGLE_NAMESPACE_ namespace google {
    147