freeswitch: fix build with gcc14 (#416636)

authored by Aleksana and committed by GitHub 371e4c2b 574609cb

+5 -1
+5 -1
pkgs/by-name/fr/freeswitch/package.nix
··· 158 159 enableParallelBuilding = true; 160 161 - env.NIX_CFLAGS_COMPILE = "-Wno-error"; 162 163 # Using c++14 because of build error 164 # gsm_at.h:94:32: error: ISO C++17 does not allow dynamic exception specifications
··· 158 159 enableParallelBuilding = true; 160 161 + env.NIX_CFLAGS_COMPILE = toString [ 162 + "-Wno-error" 163 + # https://github.com/signalwire/freeswitch/issues/2495 164 + "-Wno-incompatible-pointer-types" 165 + ]; 166 167 # Using c++14 because of build error 168 # gsm_at.h:94:32: error: ISO C++17 does not allow dynamic exception specifications