Merge pull request #298444 from reckenrode/mplayer-clang
mplayer: fix build with newer clang
This commit is contained in:
commit
f56ac26d4b
1 changed files with 3 additions and 0 deletions
|
@ -176,6 +176,9 @@ stdenv.mkDerivation rec {
|
|||
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 (
|
||||
optional fontconfigSupport "-lfontconfig"
|
||||
++ optional fribidiSupport "-lfribidi"
|
||||
|
|
Loading…
Reference in a new issue