c127c19de6
...after 579497164f
"Bump GCC baseline to 4.8.1"
Make this a fatal configuration error for now. The check should be removed
completely after LO 6.0 branch-off.
Change-Id: I70cf65d6b0eb7158008f28449794c66c1b775916
Reviewed-on: https://gerrit.libreoffice.org/38869
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
27 lines
823 B
C
27 lines
823 B
C
/*
|
|
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.
|
|
|
|
*/
|
|
|
|
#ifndef CONFIG_GLOBAL_H
|
|
#define CONFIG_GLOBAL_H
|
|
|
|
#define HAVE_CXX14_CONSTEXPR 0
|
|
#define HAVE_GCC_BUILTIN_ATOMIC 0
|
|
/* _Pragma */
|
|
#define HAVE_GCC_PRAGMA_OPERATOR 0
|
|
#define HAVE_GCC_DEPRECATED_MESSAGE 0
|
|
#define HAVE_BROKEN_CONST_ITERATORS 0
|
|
#define HAVE_SYSLOG_H 0
|
|
/* 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
|
|
|
|
#endif
|