diff options
Diffstat (limited to 'external/liborcus/gcc9.patch.0')
-rw-r--r-- | external/liborcus/gcc9.patch.0 | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/external/liborcus/gcc9.patch.0 b/external/liborcus/gcc9.patch.0 new file mode 100644 index 0000000000..da404038e6 --- /dev/null +++ b/external/liborcus/gcc9.patch.0 @@ -0,0 +1,27 @@ +--- include/orcus/types.hpp ++++ include/orcus/types.hpp +@@ -8,6 +8,14 @@ + #ifndef INCLUDED_ORCUS_TYPES_HPP + #define INCLUDED_ORCUS_TYPES_HPP + ++#ifdef __GNUC__ ++#pragma GCC diagnostic push ++#pragma GCC diagnostic ignored "-Wpragmas" // for old GCC ++#pragma GCC diagnostic ignored "-Wunknown-warning-option" // for Clang ++#pragma GCC diagnostic ignored "-Wdeprecated-copy" ++#pragma GCC diagnostic ignored "-Wshadow" ++#endif ++ + #include <cstdint> + #include <cstdlib> + #include <vector> +@@ -629,5 +637,9 @@ ORCUS_PSR_DLLPUBLIC extern const xml_token_t XML_UNKNOWN_TOKEN; + + } + ++#ifdef __GNUC__ ++#pragma GCC diagnostic pop ++#endif ++ + #endif + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |