1 /* src/config.h.in. Generated from configure.ac by autoheader. */
3 /* Namespace for Google classes */
4 #define GOOGLE_NAMESPACE google
6 /* Define if you have the `dladdr' function */
9 /* Define to 1 if you have the <dlfcn.h> header file. */
12 /* Define to 1 if you have the <execinfo.h> header file. */
13 #undef HAVE_EXECINFO_H
15 /* Define to 1 if you have the <inttypes.h> header file. */
16 #undef HAVE_INTTYPES_H
18 /* Define to 1 if you have the <libunwind.h> header file. */
19 #undef HAVE_LIBUNWIND_H
21 /* define if you have google gflags library */
22 #undef HAVE_LIB_GFLAGS
24 /* define if you have libunwind */
25 #undef HAVE_LIB_UNWIND
27 /* Define to 1 if you have the <memory.h> header file. */
30 /* define if the compiler implements namespaces */
31 #undef HAVE_NAMESPACES
33 /* Define if you have POSIX threads libraries and header files. */
36 /* define if the compiler implements pthread_rwlock_* */
39 /* Define if you have the `sigaltstack' function */
40 #undef HAVE_SIGALTSTACK
42 /* Define to 1 if you have the <stdint.h> header file. */
45 /* Define to 1 if you have the <stdlib.h> header file. */
48 /* Define to 1 if you have the <strings.h> header file. */
51 /* Define to 1 if you have the <string.h> header file. */
54 /* Define to 1 if you have the <syscall.h> header file. */
57 /* Define to 1 if you have the <sys/stat.h> header file. */
58 #undef HAVE_SYS_STAT_H
60 /* Define to 1 if you have the <sys/syscall.h> header file. */
61 #undef HAVE_SYS_SYSCALL_H
63 /* Define to 1 if you have the <sys/types.h> header file. */
64 #undef HAVE_SYS_TYPES_H
66 /* Define to 1 if you have the <ucontext.h> header file. */
67 #undef HAVE_UCONTEXT_H
69 /* Define to 1 if you have the <unistd.h> header file. */
72 /* define if the compiler supports using expression for operator */
73 #undef HAVE_USING_OPERATOR
75 /* define if your compiler has __attribute__ */
76 #undef HAVE___ATTRIBUTE__
78 /* define if your compiler has __builtin_expect */
79 #undef HAVE___BUILTIN_EXPECT
81 /* define if your compiler has __sync_val_compare_and_swap */
82 #undef HAVE___SYNC_VAL_COMPARE_AND_SWAP
87 /* Define to the address where bug reports for this package should be sent. */
88 #undef PACKAGE_BUGREPORT
90 /* Define to the full name of this package. */
93 /* Define to the full name and version of this package. */
96 /* Define to the one symbol short name of this package. */
97 #undef PACKAGE_TARNAME
99 /* Define to the version of this package. */
100 #undef PACKAGE_VERSION
102 /* How to access the PC from a struct ucontext */
103 #undef PC_FROM_UCONTEXT
105 /* Define to necessary symbol if this constant uses a non-standard name on
107 #undef PTHREAD_CREATE_JOINABLE
109 /* The size of `void *', as computed by sizeof. */
112 /* Define to 1 if you have the ANSI C header files. */
115 /* the namespace where STL code like vector<> is defined */
118 /* Version number of package */
121 /* Stops putting the code inside the Google namespace */
122 #define _END_GOOGLE_NAMESPACE_ }
124 /* Puts following code inside the Google namespace */
125 #define _START_GOOGLE_NAMESPACE_ namespace google {
127 /* Always the empty-string on non-windows systems. On windows, should be
128 "__declspec(dllexport)". This way, when we compile the dll, we export our
129 functions/classes. It's safe to define this here because config.h is only
130 used internally, to compile the DLL, and every DLL source file #includes
131 "config.h" before anything else. */
132 #ifndef GOOGLE_GLOG_DLL_DECL
133 # define GOOGLE_GLOG_IS_A_DLL 1 /* not set if you're statically linking */
134 # define GOOGLE_GLOG_DLL_DECL __declspec(dllexport)
135 # define GOOGLE_GLOG_DLL_DECL_FOR_UNITTESTS __declspec(dllimport)