softether: fix build with gcc15 (#503840)

This commit is contained in:
Fabian Affolter
2026-03-26 20:54:23 +00:00
committed by GitHub
+4
View File
@@ -53,6 +53,10 @@ stdenv.mkDerivation (finalAttrs: {
env.NIX_CFLAGS_COMPILE = toString [
"-Wno-incompatible-pointer-types"
"-Wno-implicit-function-declaration"
# Fix build with gcc15 (-std=gnu23)
"-std=gnu17"
];
meta = {