xml-security-c: fix gcc6 build

This commit is contained in:
Jörg Thalheim 2017-08-26 09:23:16 +01:00
parent 48f337a882
commit 4596835502
2 changed files with 20 additions and 8 deletions

View File

@ -0,0 +1,11 @@
--- xml-security-c-1.6.1/xsec/tools/checksig/InteropResolver.cpp.orig 2016-02-02 23:57:26.204655144 +0000
+++ xml-security-c-1.6.1/xsec/tools/checksig/InteropResolver.cpp 2016-02-02 23:57:35.796692305 +0000
@@ -645,7 +645,7 @@
}
- return false;
+ return NULL;
}

View File

@ -9,18 +9,19 @@ stdenv.mkDerivation rec {
sha256 = "e5226e7319d44f6fd9147a13fb853f5c711b9e75bf60ec273a0ef8a190592583";
};
patchPhase = ''
patches = [ ./cxx11.patch ];
postPatch = ''
mkdir -p xsec/yes/lib
sed -i -e 's/-O2 -DNDEBUG/-DNDEBUG/g' configure
'';
configurePhase = ''
./configure --prefix=$out \
--with-openssl \
--with-xerces \
--with-xalan \
--disable-static
'';
configureFlags = [
"--with-openssl"
"--with-xerces"
"--with-xalan"
"--disable-static"
];
buildInputs = [ xalanc xercesc openssl pkgconfig ];