/thirdparty/breakpad/third_party/glog/src/windows/config.h

http://github.com/tomahawk-player/tomahawk · C Header · 136 lines · 46 code · 42 blank · 48 comment · 0 complexity · 008d06aec9faf3edda7540fc75d7d048 MD5 · raw file

  1. /* src/config.h.in. Generated from configure.ac by autoheader. */
  2. /* Namespace for Google classes */
  3. #define GOOGLE_NAMESPACE google
  4. /* Define if you have the `dladdr' function */
  5. #undef HAVE_DLADDR
  6. /* Define to 1 if you have the <dlfcn.h> header file. */
  7. #undef HAVE_DLFCN_H
  8. /* Define to 1 if you have the <execinfo.h> header file. */
  9. #undef HAVE_EXECINFO_H
  10. /* Define to 1 if you have the <inttypes.h> header file. */
  11. #undef HAVE_INTTYPES_H
  12. /* Define to 1 if you have the <libunwind.h> header file. */
  13. #undef HAVE_LIBUNWIND_H
  14. /* define if you have google gflags library */
  15. #undef HAVE_LIB_GFLAGS
  16. /* define if you have libunwind */
  17. #undef HAVE_LIB_UNWIND
  18. /* Define to 1 if you have the <memory.h> header file. */
  19. #undef HAVE_MEMORY_H
  20. /* define if the compiler implements namespaces */
  21. #undef HAVE_NAMESPACES
  22. /* Define if you have POSIX threads libraries and header files. */
  23. #undef HAVE_PTHREAD
  24. /* define if the compiler implements pthread_rwlock_* */
  25. #undef HAVE_RWLOCK
  26. /* Define if you have the `sigaltstack' function */
  27. #undef HAVE_SIGALTSTACK
  28. /* Define to 1 if you have the <stdint.h> header file. */
  29. #undef HAVE_STDINT_H
  30. /* Define to 1 if you have the <stdlib.h> header file. */
  31. #undef HAVE_STDLIB_H
  32. /* Define to 1 if you have the <strings.h> header file. */
  33. #undef HAVE_STRINGS_H
  34. /* Define to 1 if you have the <string.h> header file. */
  35. #undef HAVE_STRING_H
  36. /* Define to 1 if you have the <syscall.h> header file. */
  37. #undef HAVE_SYSCALL_H
  38. /* Define to 1 if you have the <sys/stat.h> header file. */
  39. #undef HAVE_SYS_STAT_H
  40. /* Define to 1 if you have the <sys/syscall.h> header file. */
  41. #undef HAVE_SYS_SYSCALL_H
  42. /* Define to 1 if you have the <sys/types.h> header file. */
  43. #undef HAVE_SYS_TYPES_H
  44. /* Define to 1 if you have the <ucontext.h> header file. */
  45. #undef HAVE_UCONTEXT_H
  46. /* Define to 1 if you have the <unistd.h> header file. */
  47. #undef HAVE_UNISTD_H
  48. /* define if the compiler supports using expression for operator */
  49. #undef HAVE_USING_OPERATOR
  50. /* define if your compiler has __attribute__ */
  51. #undef HAVE___ATTRIBUTE__
  52. /* define if your compiler has __builtin_expect */
  53. #undef HAVE___BUILTIN_EXPECT
  54. /* define if your compiler has __sync_val_compare_and_swap */
  55. #undef HAVE___SYNC_VAL_COMPARE_AND_SWAP
  56. /* Name of package */
  57. #undef PACKAGE
  58. /* Define to the address where bug reports for this package should be sent. */
  59. #undef PACKAGE_BUGREPORT
  60. /* Define to the full name of this package. */
  61. #undef PACKAGE_NAME
  62. /* Define to the full name and version of this package. */
  63. #undef PACKAGE_STRING
  64. /* Define to the one symbol short name of this package. */
  65. #undef PACKAGE_TARNAME
  66. /* Define to the version of this package. */
  67. #undef PACKAGE_VERSION
  68. /* How to access the PC from a struct ucontext */
  69. #undef PC_FROM_UCONTEXT
  70. /* Define to necessary symbol if this constant uses a non-standard name on
  71. your system. */
  72. #undef PTHREAD_CREATE_JOINABLE
  73. /* The size of `void *', as computed by sizeof. */
  74. #undef SIZEOF_VOID_P
  75. /* Define to 1 if you have the ANSI C header files. */
  76. #undef STDC_HEADERS
  77. /* the namespace where STL code like vector<> is defined */
  78. #undef STL_NAMESPACE
  79. /* Version number of package */
  80. #undef VERSION
  81. /* Stops putting the code inside the Google namespace */
  82. #define _END_GOOGLE_NAMESPACE_ }
  83. /* Puts following code inside the Google namespace */
  84. #define _START_GOOGLE_NAMESPACE_ namespace google {
  85. /* Always the empty-string on non-windows systems. On windows, should be
  86. "__declspec(dllexport)". This way, when we compile the dll, we export our
  87. functions/classes. It's safe to define this here because config.h is only
  88. used internally, to compile the DLL, and every DLL source file #includes
  89. "config.h" before anything else. */
  90. #ifndef GOOGLE_GLOG_DLL_DECL
  91. # define GOOGLE_GLOG_IS_A_DLL 1 /* not set if you're statically linking */
  92. # define GOOGLE_GLOG_DLL_DECL __declspec(dllexport)
  93. # define GOOGLE_GLOG_DLL_DECL_FOR_UNITTESTS __declspec(dllimport)
  94. #endif