gnum4: Disable stack protector when using MinGW (#171828)

Co-authored-by: Sandro <sandro.jaeckel@gmail.com>

authored by Rasmus Rendal Sandro and committed by GitHub 98152f70 a2543aa2

+2 -1
+2 -1
pkgs/development/tools/misc/gnum4/default.nix
··· 16 16 17 17 doCheck = false; 18 18 19 - configureFlags = [ "--with-syscmd-shell=${stdenv.shell}" ]; 19 + configureFlags = [ "--with-syscmd-shell=${stdenv.shell}" ] 20 + ++ lib.optional stdenv.hostPlatform.isMinGW "CFLAGS=-fno-stack-protector"; 20 21 21 22 meta = { 22 23 description = "GNU M4, a macro processor";