mplayer: fix build with newer clang
Suppress certain warnings that are errors by default with newer versions of clang.
This commit is contained in:
parent
c1a17238bc
commit
f3b5c50aef
1 changed files with 3 additions and 0 deletions
|
@ -176,6 +176,9 @@ stdenv.mkDerivation rec {
|
||||||
echo CONFIG_MPEGAUDIODSP=yes >> config.mak
|
echo CONFIG_MPEGAUDIODSP=yes >> config.mak
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
# Fixes compilation with newer versions of clang that make these warnings errors by default.
|
||||||
|
NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-int-conversion -Wno-incompatible-function-pointer-types";
|
||||||
|
|
||||||
NIX_LDFLAGS = with lib; toString (
|
NIX_LDFLAGS = with lib; toString (
|
||||||
optional fontconfigSupport "-lfontconfig"
|
optional fontconfigSupport "-lfontconfig"
|
||||||
++ optional fribidiSupport "-lfribidi"
|
++ optional fribidiSupport "-lfribidi"
|
||||||
|
|
Loading…
Reference in a new issue