Merge pull request #170201 from vcunat/p/nginx-gcc11

nginx: fixup build with other than gcc11
This commit is contained in:
Rick van Schijndel
2022-04-25 08:51:57 +02:00
committed by GitHub
+1
View File
@@ -107,6 +107,7 @@ stdenv.mkDerivation {
NIX_CFLAGS_COMPILE = toString ([
"-I${libxml2.dev}/include/libxml2"
"-Wno-error=implicit-fallthrough"
] ++ optionals (stdenv.cc.isGNU && lib.versionAtLeast stdenv.cc.version "11") [
# fix build vts module on gcc11
"-Wno-error=stringop-overread"
] ++ optional stdenv.isDarwin "-Wno-error=deprecated-declarations");