Gentoo Archives: gentoo-commits

From: "Peter Alfredsen (loki_val)" <loki_val@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-cpp/libthrowable/files: libthrowable-1.1.0-gcc43.diff
Date: Sat, 06 Sep 2008 11:44:53
Message-Id: E1KbwDj-0005Hi-07@stork.gentoo.org
1 loki_val 08/09/06 11:44:50
2
3 Modified: libthrowable-1.1.0-gcc43.diff
4 Log:
5 Update gcc-4.3 patch per bug 236362. Thanks to Michael Gisbers <michael@×××××××.de>.
6 (Portage version: 2.2_rc8/cvs/Linux 2.6.25.8 i686)
7
8 Revision Changes Path
9 1.2 dev-cpp/libthrowable/files/libthrowable-1.1.0-gcc43.diff
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/libthrowable/files/libthrowable-1.1.0-gcc43.diff?rev=1.2&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/libthrowable/files/libthrowable-1.1.0-gcc43.diff?rev=1.2&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/libthrowable/files/libthrowable-1.1.0-gcc43.diff?r1=1.1&r2=1.2
14
15 Index: libthrowable-1.1.0-gcc43.diff
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/dev-cpp/libthrowable/files/libthrowable-1.1.0-gcc43.diff,v
18 retrieving revision 1.1
19 retrieving revision 1.2
20 diff -u -r1.1 -r1.2
21 --- libthrowable-1.1.0-gcc43.diff 3 May 2008 18:57:05 -0000 1.1
22 +++ libthrowable-1.1.0-gcc43.diff 6 Sep 2008 11:44:50 -0000 1.2
23 @@ -1,6 +1,9 @@
24 ---- libthrowable-1.1.0/libthrowable/internal/internal.cc.orig 2008-05-03 20:41:16.000000000 +0200
25 -+++ libthrowable-1.1.0/libthrowable/internal/internal.cc 2008-05-03 20:41:51.000000000 +0200
26 -@@ -23,7 +23,8 @@
27 +diff -NrU5 libthrowable-1.1.0.orig/libthrowable/internal/internal.cc libthrowable-1.1.0/libthrowable/internal/internal.cc
28 +--- libthrowable-1.1.0.orig/libthrowable/internal/internal.cc 2008-09-06 13:40:11.000000000 +0200
29 ++++ libthrowable-1.1.0/libthrowable/internal/internal.cc 2008-09-06 13:36:03.000000000 +0200
30 +@@ -21,11 +21,12 @@
31 + #include "libthrowable/init.h"
32 + #include "libthrowable/system.h"
33 #include "libthrowable/macros/here.h"
34 #include "libthrowable/util/util.h"
35 #include "libthrowable/internal/threads.h"
36 @@ -10,3 +13,20 @@
37 #include <sstream>
38 #include <iostream>
39 #include <limits>
40 + #if defined LIBTHROWABLE_POSIX
41 + # include <unistd.h>
42 +diff -NrU5 libthrowable-1.1.0.orig/libthrowable/internal/posix_threads.h libthrowable-1.1.0/libthrowable/internal/posix_threads.h
43 +--- libthrowable-1.1.0.orig/libthrowable/internal/posix_threads.h 2008-09-06 13:37:20.000000000 +0200
44 ++++ libthrowable-1.1.0/libthrowable/internal/posix_threads.h 2008-09-06 13:38:17.000000000 +0200
45 +@@ -20,10 +20,11 @@
46 + #ifndef H_LIBTHROWABLE_POSIX_THREADS
47 + #define H_LIBTHROWABLE_POSIX_THREADS
48 + #include <errno.h>
49 + #include <pthread.h>
50 + #include <sstream>
51 ++#include <cstring>
52 + #include "libthrowable/internal/internal.h"
53 + #include "libthrowable/macros/here.h"
54 + namespace libthrowable {
55 + namespace internal {
56 + namespace posix {