Merge pull request #192077 from onny/freeswitch-fix

freeswitch: Fix build error
This commit is contained in:
Jonas Heinrich 2022-09-20 16:29:50 +02:00 committed by GitHub
commit 651dd8ab45
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -125,6 +125,10 @@ stdenv.mkDerivation rec {
NIX_CFLAGS_COMPILE = "-Wno-error";
# Using c++14 because of build error
# gsm_at.h:94:32: error: ISO C++17 does not allow dynamic exception specifications
CXXFLAGS = "-std=c++14";
CFLAGS = "-D_ANSI_SOURCE";
hardeningDisable = [ "format" ];