mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
qca2: Patch for gcc 4.7+ (close #738).
Thanks to http://lists.pld-linux.org/mailman/pipermail/pld-cvs-commit/Week-of-Mon-20120917/347917.html
This commit is contained in:
parent
8ba92b8895
commit
de71c8bdb0
@ -21,6 +21,8 @@ stdenv.mkDerivation rec {
|
|||||||
EMSA3_SHA512 ///< SHA512, with EMSA3 (ie PKCS#1 Version 1.5) encoding'
|
EMSA3_SHA512 ///< SHA512, with EMSA3 (ie PKCS#1 Version 1.5) encoding'
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
patches = [ ./gcc47.patch ];
|
||||||
|
|
||||||
configureFlags = "--no-separate-debug-info";
|
configureFlags = "--no-separate-debug-info";
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
12
pkgs/development/libraries/qca2/gcc47.patch
Normal file
12
pkgs/development/libraries/qca2/gcc47.patch
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
# Thanks to http://lists.pld-linux.org/mailman/pipermail/pld-cvs-commit/Week-of-Mon-20120917/347917.html
|
||||||
|
--- qca-2.0.3/src/botantools/botan/botan/secmem.h.orig 2007-04-19 23:26:13.000000000 +0200
|
||||||
|
+++ qca-2.0.3/src/botantools/botan/botan/secmem.h 2012-09-16 23:28:43.767480490 +0200
|
||||||
|
@@ -214,7 +214,7 @@
|
||||||
|
|
||||||
|
SecureVector(u32bit n = 0) { MemoryRegion<T>::init(true, n); }
|
||||||
|
SecureVector(const T in[], u32bit n)
|
||||||
|
- { MemoryRegion<T>::init(true); set(in, n); }
|
||||||
|
+ { MemoryRegion<T>::init(true); this->set(in, n); }
|
||||||
|
SecureVector(const MemoryRegion<T>& in)
|
||||||
|
{ MemoryRegion<T>::init(true); set(in); }
|
||||||
|
SecureVector(const MemoryRegion<T>& in1, const MemoryRegion<T>& in2)
|
Loading…
Reference in New Issue
Block a user