Merge pull request #50536 from c0bw3b/pkg/xercesc

xercesc: disable SSE2 extension
This commit is contained in:
Renaud 2018-11-18 12:24:13 +01:00 committed by GitHub
commit b7361e4c25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,8 +9,12 @@ stdenv.mkDerivation rec {
sha256 = "04q4c460wqzyzmprjm22igcm1d52xr20ajxnhr33nv95mbw92qfx";
};
# Disable SSE2 extensions on platforms for which they are not enabled by default
configureFlags = [ "--disable-sse2" ];
enableParallelBuilding = true;
meta = {
homepage = http://xerces.apache.org/xerces-c/;
homepage = https://xerces.apache.org/xerces-c/;
description = "Validating XML parser written in a portable subset of C++";
license = stdenv.lib.licenses.asl20;
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;