1 /* src/config.h.in.  Generated from configure.ac by autoheader.  */
2 
3 /* define if you have google gflags library */
4 #define HAVE_LIB_GFLAGS 1
5 
6 /* Namespace for Google classes */
7 #define GOOGLE_NAMESPACE google
8 
9 /* Stops putting the code inside the Google namespace */
10 #define _END_GOOGLE_NAMESPACE_ }
11 
12 /* Puts following code inside the Google namespace */
13 #define _START_GOOGLE_NAMESPACE_ namespace google {
14 
15 #if defined(__MINGW32__) || (defined(_MSC_VER) && (_MSC_VER >= 1900))
16 #  define HAVE_SNPRINTF
17 #endif
18 
19 /* Always the empty-string on non-windows systems. On windows, should be
20    "__declspec(dllexport)". This way, when we compile the dll, we export our
21    functions/classes. It's safe to define this here because config.h is only
22    used internally, to compile the DLL, and every DLL source file #includes
23    "config.h" before anything else. */
24 #ifndef GOOGLE_GLOG_DLL_DECL
25 # define GOOGLE_GLOG_IS_A_DLL  1   /* not set if you're statically linking */
26 # define GOOGLE_GLOG_DLL_DECL  __declspec(dllexport)
27 # define GOOGLE_GLOG_DLL_DECL_FOR_UNITTESTS  __declspec(dllimport)
28 #endif
29