Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / version-management / monotone / monotone-1.1-gcc-14.patch
bloba5b79b6d02fb737d98081f8f6fdddbd4032884c6
1 Unsetting __STRICT_ANSI__ is not a supported configuration for gcc
2 nowadays. gcc-14 started failing libstdc++ build as it uses gcc
3 extensions without __STRICT_ANSI__: https://gcc.gnu.org/PR111824
4 --- a/src/base.hh
5 +++ b/src/base.hh
6 @@ -34,11 +34,6 @@
7 #define WIN32_LEAN_AND_MEAN
8 #endif
10 -// Cygwin somehow enables strict ansi, which we don't want.
11 -#ifdef __STRICT_ANSI__
12 -#undef __STRICT_ANSI__
13 -#endif
15 #include <iosfwd>
16 #include <string> // it would be nice if there were a <stringfwd>