Merge pull request #32397 from volth/patch-77

freerdp: fix aarch64 build
This commit is contained in:
Jörg Thalheim 2017-12-09 08:18:17 +00:00 committed by GitHub
commit 40bad16884
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -58,7 +58,7 @@ stdenv.mkDerivation rec {
++ optional (cups != null) "-DWITH_CUPS=ON" ++ optional (cups != null) "-DWITH_CUPS=ON"
++ optional (pcsclite != null) "-DWITH_PCSC=ON" ++ optional (pcsclite != null) "-DWITH_PCSC=ON"
++ optional buildServer "-DWITH_SERVER=ON" ++ optional buildServer "-DWITH_SERVER=ON"
++ optional optimize "-DWITH_SSE2=ON"; ++ optional (optimize && stdenv.isx86_64) "-DWITH_SSE2=ON";
meta = with lib; { meta = with lib; {
description = "A Remote Desktop Protocol Client"; description = "A Remote Desktop Protocol Client";