Gentoo Archives: gentoo-commits

From: "Alon Bar-Lev (alonbl)" <alonbl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-crypt/truecrypt/files: truecrypt-5.1a-gcc-4.3.patch
Date: Fri, 18 Apr 2008 05:26:46
Message-Id: E1Jmj7T-0002fi-Ld@stork.gentoo.org
1 alonbl 08/04/18 05:26:43
2
3 Added: truecrypt-5.1a-gcc-4.3.patch
4 Log:
5 Fix gcc-4.3 issue, bug#218137, thanks to Holger Ackermann
6 (Portage version: 2.1.5_rc4)
7
8 Revision Changes Path
9 1.1 app-crypt/truecrypt/files/truecrypt-5.1a-gcc-4.3.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/truecrypt/files/truecrypt-5.1a-gcc-4.3.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-crypt/truecrypt/files/truecrypt-5.1a-gcc-4.3.patch?rev=1.1&content-type=text/plain
13
14 Index: truecrypt-5.1a-gcc-4.3.patch
15 ===================================================================
16 diff -ubr ./truecrypt-5.1a-source/Core/FatFormatter.cpp ./truecrypt-5.1a-source-patch/Core/FatFormatter.cpp
17 --- ./truecrypt-5.1a-source/Core/FatFormatter.cpp 2008-02-04 18:28:50.000000000 +0100
18 +++ ./truecrypt-5.1a-source-patch/Core/FatFormatter.cpp 2008-04-17 18:58:06.000000000 +0200
19 @@ -13,6 +13,7 @@
20 #include "Common/Tcdefs.h"
21 #include "Platform/Platform.h"
22 #include "FatFormatter.h"
23 +#include <cstring>
24
25 namespace TrueCrypt
26 {
27 diff -ubr ./truecrypt-5.1a-source/Platform/Memory.cpp ./truecrypt-5.1a-source-patch/Platform/Memory.cpp
28 --- ./truecrypt-5.1a-source/Platform/Memory.cpp 2008-02-04 12:14:46.000000000 +0100
29 +++ ./truecrypt-5.1a-source-patch/Platform/Memory.cpp 2008-04-17 18:58:06.000000000 +0200
30 @@ -8,6 +8,7 @@
31
32 #include "Memory.h"
33 #include "Exception.h"
34 +#include <cstring>
35
36 namespace TrueCrypt
37 {
38 diff -ubr ./truecrypt-5.1a-source/Volume/EncryptionTest.cpp ./truecrypt-5.1a-source-patch/Volume/EncryptionTest.cpp
39 --- ./truecrypt-5.1a-source/Volume/EncryptionTest.cpp 2008-02-04 12:14:12.000000000 +0100
40 +++ ./truecrypt-5.1a-source-patch/Volume/EncryptionTest.cpp 2008-04-17 18:58:06.000000000 +0200
41 @@ -15,6 +15,7 @@
42 #include "EncryptionModeXTS.h"
43 #include "EncryptionTest.h"
44 #include "Pkcs5Kdf.h"
45 +#include <cstring>
46
47 namespace TrueCrypt
48 {
49
50
51
52 --
53 gentoo-commits@l.g.o mailing list