Gentoo Archives: gentoo-commits

From: "Ioannis Aslanidis (deathwing00)" <deathwing00@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-wireless/kdebluetooth/files: kdebluetooth-1.0_beta8-gcc43.patch
Date: Mon, 31 Mar 2008 21:43:00
Message-Id: E1JgRmM-0002Vh-DR@stork.gentoo.org
1 deathwing00 08/03/31 21:42:58
2
3 Added: kdebluetooth-1.0_beta8-gcc43.patch
4 Log:
5 Fixed bug #215620 (gcc 4.3 patch). Added missing quotes. Fixed header date.
6 (Portage version: 2.1.4.4)
7
8 Revision Changes Path
9 1.1 net-wireless/kdebluetooth/files/kdebluetooth-1.0_beta8-gcc43.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-wireless/kdebluetooth/files/kdebluetooth-1.0_beta8-gcc43.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-wireless/kdebluetooth/files/kdebluetooth-1.0_beta8-gcc43.patch?rev=1.1&content-type=text/plain
13
14 Index: kdebluetooth-1.0_beta8-gcc43.patch
15 ===================================================================
16 --- kdebluetooth/libkbluetooth/sdpdevice.cpp~ 2008-03-31 17:47:49.000000000 +0200
17 +++ kdebluetooth/libkbluetooth/sdpdevice.cpp 2008-03-31 17:48:10.000000000 +0200
18 @@ -9,6 +9,7 @@
19 * (at your option) any later version. *
20 ***************************************************************************/
21
22 +#include <cstdlib>
23 #include <assert.h>
24 #include "sdpdevice.h"
25 #include <kdebug.h>
26 --- kdebluetooth/kcm_btpaired/pairedtab.cpp~ 2008-03-31 17:52:44.000000000 +0200
27 +++ kdebluetooth/kcm_btpaired/pairedtab.cpp 2008-03-31 17:52:56.000000000 +0200
28 @@ -55,8 +55,8 @@
29 using namespace KBluetooth;
30
31 struct HcidLinkKeyStruct {
32 - uint8_t key[16];
33 - uint8_t type;
34 + unsigned char key[16];
35 + unsigned char type;
36 time_t time;
37 };
38
39 --- kdebluetooth/kcm_btpaired/pairedtab.h~ 2008-03-31 17:51:32.000000000 +0200
40 +++ kdebluetooth/kcm_btpaired/pairedtab.h 2008-03-31 17:52:28.000000000 +0200
41 @@ -65,8 +65,8 @@
42 QString remoteAddr;
43 QString remoteName;
44 QString remoteClass;
45 - uint8_t linkKey[16];
46 - uint8_t type;
47 + unsigned char linkKey[16];
48 + unsigned char type;
49 QString lastUsedTime;
50 QString lastSeenTime;
51 QListViewItem *listViewItem;
52 --- kdebluetooth/kbluetooth/sdprecord.cpp~ 2008-03-31 17:49:08.000000000 +0200
53 +++ kdebluetooth/kbluetooth/sdprecord.cpp 2008-03-31 17:49:16.000000000 +0200
54 @@ -11,6 +11,7 @@
55
56 #include "sdprecord.h"
57
58 +#include <cstdlib>
59 #include <qdom.h>
60 #include <kdebug.h>
61 #include <bluetooth/sdp_lib.h>
62
63
64
65 --
66 gentoo-commits@l.g.o mailing list