Merge pull request #50536 from c0bw3b/pkg/xercesc
xercesc: disable SSE2 extension
This commit is contained in:
commit
b7361e4c25
@ -9,8 +9,12 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "04q4c460wqzyzmprjm22igcm1d52xr20ajxnhr33nv95mbw92qfx";
|
sha256 = "04q4c460wqzyzmprjm22igcm1d52xr20ajxnhr33nv95mbw92qfx";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# Disable SSE2 extensions on platforms for which they are not enabled by default
|
||||||
|
configureFlags = [ "--disable-sse2" ];
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = {
|
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++";
|
description = "Validating XML parser written in a portable subset of C++";
|
||||||
license = stdenv.lib.licenses.asl20;
|
license = stdenv.lib.licenses.asl20;
|
||||||
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
platforms = stdenv.lib.platforms.linux ++ stdenv.lib.platforms.darwin;
|
||||||
|
Loading…
Reference in New Issue
Block a user