Home | History | Annotate | Download | only in private
      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 <fnmatch.h> header file. */
     18 #define HAVE_FNMATCH_H 1
     19 
     20 /* Define to 1 if you have the <inttypes.h> header file. */
     21 #define HAVE_INTTYPES_H 1
     22 
     23 /* Define to 1 if you have the <memory.h> header file. */
     24 #define HAVE_MEMORY_H 1
     25 
     26 /* define if the compiler implements namespaces */
     27 #define HAVE_NAMESPACES 1
     28 
     29 /* Define if you have POSIX threads libraries and header files. */
     30 #define HAVE_PTHREAD 1
     31 
     32 /* Define to 1 if you have the `putenv' function. */
     33 #define HAVE_PUTENV 1
     34 
     35 /* Define to 1 if you have the `setenv' function. */
     36 #define HAVE_SETENV 1
     37 
     38 /* Define to 1 if you have the <stdint.h> header file. */
     39 #define HAVE_STDINT_H 1
     40 
     41 /* Define to 1 if you have the <stdlib.h> header file. */
     42 #define HAVE_STDLIB_H 1
     43 
     44 /* Define to 1 if you have the <strings.h> header file. */
     45 #define HAVE_STRINGS_H 1
     46 
     47 /* Define to 1 if you have the <string.h> header file. */
     48 #define HAVE_STRING_H 1
     49 
     50 /* Define to 1 if you have the `strtoll' function. */
     51 #define HAVE_STRTOLL 1
     52 
     53 /* Define to 1 if you have the `strtoq' function. */
     54 #define HAVE_STRTOQ 1
     55 
     56 /* Define to 1 if you have the <sys/stat.h> header file. */
     57 #define HAVE_SYS_STAT_H 1
     58 
     59 /* Define to 1 if you have the <sys/types.h> header file. */
     60 #define HAVE_SYS_TYPES_H 1
     61 
     62 /* Define to 1 if you have the <unistd.h> header file. */
     63 #define HAVE_UNISTD_H 1
     64 
     65 /* define if your compiler has __attribute__ */
     66 #define HAVE___ATTRIBUTE__ 1
     67 
     68 /* Define to the sub-directory in which libtool stores uninstalled libraries.
     69    */
     70 #define LT_OBJDIR ".libs/"
     71 
     72 /* Name of package */
     73 #define PACKAGE "gflags"
     74 
     75 /* Define to the address where bug reports for this package should be sent. */
     76 #define PACKAGE_BUGREPORT "opensource (at) google.com"
     77 
     78 /* Define to the full name of this package. */
     79 #define PACKAGE_NAME "gflags"
     80 
     81 /* Define to the full name and version of this package. */
     82 #define PACKAGE_STRING "gflags 1.5"
     83 
     84 /* Define to the one symbol short name of this package. */
     85 #define PACKAGE_TARNAME "gflags"
     86 
     87 /* Define to the home page for this package. */
     88 #define PACKAGE_URL ""
     89 
     90 /* Define to the version of this package. */
     91 #define PACKAGE_VERSION "1.5"
     92 
     93 /* Define to necessary symbol if this constant uses a non-standard name on
     94    your system. */
     95 /* #undef PTHREAD_CREATE_JOINABLE */
     96 
     97 /* Define to 1 if you have the ANSI C header files. */
     98 #define STDC_HEADERS 1
     99 
    100 /* the namespace where STL code like vector<> is defined */
    101 #define STL_NAMESPACE std
    102 
    103 /* Version number of package */
    104 #define VERSION "1.5"
    105 
    106 /* Stops putting the code inside the Google namespace */
    107 #define _END_GOOGLE_NAMESPACE_ }
    108 
    109 /* Puts following code inside the Google namespace */
    110 #define _START_GOOGLE_NAMESPACE_ namespace google {
    111