forked from mirrors/nixpkgs
Merge pull request #66276 from eraserhd/pr/master/xcbuild-libcompression
xcbuild: fix darwin build
This commit is contained in:
commit
4589c892c5
|
@ -36,10 +36,15 @@ in stdenv.mkDerivation rec {
|
|||
cp -r --no-preserve=all ${linenoise} ThirdParty/linenoise
|
||||
'';
|
||||
|
||||
# Avoid a glibc >= 2.25 deprecation warning that gets fatal via -Werror.
|
||||
postPatch = stdenv.lib.optionalString (!stdenv.isDarwin) ''
|
||||
# Avoid a glibc >= 2.25 deprecation warning that gets fatal via -Werror.
|
||||
sed 1i'#include <sys/sysmacros.h>' \
|
||||
-i Libraries/xcassets/Headers/xcassets/Slot/SystemVersion.h
|
||||
'' + stdenv.lib.optionalString stdenv.isDarwin ''
|
||||
# Apple Open Sourced LZFSE, but not libcompression, and it isn't
|
||||
# part of an impure framework we can add
|
||||
sed '/#define HAVE_LIBCOMPRESSION 1/d' \
|
||||
-i Libraries/libcar/Sources/Rendition.cpp
|
||||
'';
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
|
Loading…
Reference in a new issue