softether: fix build with gcc15

This commit is contained in:
Artur Sannikov
2026-03-26 22:07:02 +02:00
parent 2862328adc
commit 4f7f556db2
+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 = {