2012-12-07 10:51:21 -06:00
|
|
|
/*
|
|
|
|
Global configuration file.
|
|
|
|
|
|
|
|
Only for settings that apply to every source file and are unlikely to change often,
|
|
|
|
such as whether a certain C++11 feature is available.
|
|
|
|
|
|
|
|
Do NOT use for settings local to some code or for settings that can change often.
|
|
|
|
Any change in this header will cause a rebuild of almost everything.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2012-12-23 15:25:49 -06:00
|
|
|
#ifndef CONFIG_GLOBAL_H
|
|
|
|
#define CONFIG_GLOBAL_H
|
|
|
|
|
2013-06-13 11:41:41 -05:00
|
|
|
/* Prefer using a feature-specific check such as HAVE_CXX11_DELETE to the generic HAVE_CXX11. */
|
|
|
|
#define HAVE_CXX11 0
|
2013-03-19 10:44:12 -05:00
|
|
|
#define HAVE_CXX11_DELETE 0
|
|
|
|
#define HAVE_CXX11_OVERRIDE 0
|
2013-04-08 03:23:53 -05:00
|
|
|
#define HAVE_CXX11_FINAL 0
|
2013-03-19 10:44:12 -05:00
|
|
|
#define HAVE_CXX11_PERFECT_FORWARDING 0
|
|
|
|
#define HAVE_GCC_BUILTIN_ATOMIC 0
|
2013-03-23 15:55:27 -05:00
|
|
|
#define HAVE_GCC_PRAGMA_DIAGNOSTIC_MODIFY 0
|
|
|
|
#define HAVE_GCC_PRAGMA_DIAGNOSTIC_SCOPE 0
|
2013-08-02 07:18:22 -05:00
|
|
|
/* _Pragma */
|
|
|
|
#define HAVE_GCC_PRAGMA_OPERATOR 0
|
|
|
|
#define HAVE_GCC_DEPRECATED_MESSAGE 0
|
2013-03-19 10:44:12 -05:00
|
|
|
#define HAVE_THREADSAFE_STATICS 0
|
|
|
|
#define HAVE_SYSLOG_H 0
|
2013-07-23 02:49:57 -05:00
|
|
|
/* Compiler supports __attribute__((warn_unused)). */
|
|
|
|
#define HAVE_GCC_ATTRIBUTE_WARN_UNUSED 0
|
|
|
|
/* C++ library uses __attribute__((warn_unused)) for basic types like std::string. */
|
|
|
|
#define HAVE_GCC_ATTRIBUTE_WARN_UNUSED_STL 0
|
2012-12-23 15:25:49 -06:00
|
|
|
|
|
|
|
#endif
|