summary refs log tree commit diff
path: root/pkgs/development/libraries/mediastreamer
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2019-11-06 16:39:47 +0100
committerFranz Pletz <fpletz@fnordicwalking.de>2019-11-06 16:39:47 +0100
commit34a69b9aec30af79b67a29ba80c065c0b3b63669 (patch)
tree135b78430a0dcaf9e9fbf71b14cdeb561ad2ee42 /pkgs/development/libraries/mediastreamer
parent4cbe75c067a4413cc3c396d88721b6ad02210899 (diff)
downloadnixpkgs-34a69b9aec30af79b67a29ba80c065c0b3b63669.tar
nixpkgs-34a69b9aec30af79b67a29ba80c065c0b3b63669.tar.gz
nixpkgs-34a69b9aec30af79b67a29ba80c065c0b3b63669.tar.bz2
nixpkgs-34a69b9aec30af79b67a29ba80c065c0b3b63669.tar.lz
nixpkgs-34a69b9aec30af79b67a29ba80c065c0b3b63669.tar.xz
nixpkgs-34a69b9aec30af79b67a29ba80c065c0b3b63669.tar.zst
nixpkgs-34a69b9aec30af79b67a29ba80c065c0b3b63669.zip
mediastreamer: fix build with gcc9
Diffstat (limited to 'pkgs/development/libraries/mediastreamer')
-rw-r--r--pkgs/development/libraries/mediastreamer/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/libraries/mediastreamer/default.nix b/pkgs/development/libraries/mediastreamer/default.nix
index 93e73a44bc9..b482176ff29 100644
--- a/pkgs/development/libraries/mediastreamer/default.nix
+++ b/pkgs/development/libraries/mediastreamer/default.nix
@@ -38,6 +38,8 @@ stdenv.mkDerivation rec {
     "-DGIT_VERSION=\"v2.14.0\""
     "-Wno-error=deprecated-declarations"
     "-Wno-error=cast-function-type"
+    "-Wno-error=stringop-truncation"
+    "-Wno-error=stringop-overflow"
   ];
   NIX_LDFLAGS = "-lXext -lssl";