public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-cpp/libthrowable/files: libthrowable-1.1.0-gcc43.diff
@ 2008-05-03 18:57 Hanno Boeck (hanno)
  0 siblings, 0 replies; 4+ messages in thread
From: Hanno Boeck (hanno) @ 2008-05-03 18:57 UTC (permalink / raw
  To: gentoo-commits

hanno       08/05/03 18:57:05

  Added:                libthrowable-1.1.0-gcc43.diff
  Log:
  libthrowable: fix for gcc43
  (Portage version: 2.1.5_rc6)

Revision  Changes    Path
1.1                  dev-cpp/libthrowable/files/libthrowable-1.1.0-gcc43.diff

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/libthrowable/files/libthrowable-1.1.0-gcc43.diff?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/libthrowable/files/libthrowable-1.1.0-gcc43.diff?rev=1.1&content-type=text/plain

Index: libthrowable-1.1.0-gcc43.diff
===================================================================
--- libthrowable-1.1.0/libthrowable/internal/internal.cc.orig	2008-05-03 20:41:16.000000000 +0200
+++ libthrowable-1.1.0/libthrowable/internal/internal.cc	2008-05-03 20:41:51.000000000 +0200
@@ -23,7 +23,8 @@
 #include "libthrowable/macros/here.h"
 #include "libthrowable/util/util.h"
 #include "libthrowable/internal/threads.h"
-#include <string>
+#include <stdlib.h>
+#include <string.h>
 #include <sstream>
 #include <iostream>
 #include <limits>



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-cpp/libthrowable/files: libthrowable-1.1.0-gcc43.diff
@ 2008-09-06 11:44 Peter Alfredsen (loki_val)
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Alfredsen (loki_val) @ 2008-09-06 11:44 UTC (permalink / raw
  To: gentoo-commits

loki_val    08/09/06 11:44:50

  Modified:             libthrowable-1.1.0-gcc43.diff
  Log:
  Update gcc-4.3 patch per bug 236362. Thanks to Michael Gisbers <michael@gisbers.de>.
  (Portage version: 2.2_rc8/cvs/Linux 2.6.25.8 i686)

Revision  Changes    Path
1.2                  dev-cpp/libthrowable/files/libthrowable-1.1.0-gcc43.diff

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/libthrowable/files/libthrowable-1.1.0-gcc43.diff?rev=1.2&view=markup
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
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

Index: libthrowable-1.1.0-gcc43.diff
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/libthrowable/files/libthrowable-1.1.0-gcc43.diff,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- libthrowable-1.1.0-gcc43.diff	3 May 2008 18:57:05 -0000	1.1
+++ libthrowable-1.1.0-gcc43.diff	6 Sep 2008 11:44:50 -0000	1.2
@@ -1,6 +1,9 @@
---- libthrowable-1.1.0/libthrowable/internal/internal.cc.orig	2008-05-03 20:41:16.000000000 +0200
-+++ libthrowable-1.1.0/libthrowable/internal/internal.cc	2008-05-03 20:41:51.000000000 +0200
-@@ -23,7 +23,8 @@
+diff -NrU5 libthrowable-1.1.0.orig/libthrowable/internal/internal.cc libthrowable-1.1.0/libthrowable/internal/internal.cc
+--- libthrowable-1.1.0.orig/libthrowable/internal/internal.cc	2008-09-06 13:40:11.000000000 +0200
++++ libthrowable-1.1.0/libthrowable/internal/internal.cc	2008-09-06 13:36:03.000000000 +0200
+@@ -21,11 +21,12 @@
+ #include "libthrowable/init.h"
+ #include "libthrowable/system.h"
  #include "libthrowable/macros/here.h"
  #include "libthrowable/util/util.h"
  #include "libthrowable/internal/threads.h"
@@ -10,3 +13,20 @@
  #include <sstream>
  #include <iostream>
  #include <limits>
+ #if defined LIBTHROWABLE_POSIX
+ #  include <unistd.h>
+diff -NrU5 libthrowable-1.1.0.orig/libthrowable/internal/posix_threads.h libthrowable-1.1.0/libthrowable/internal/posix_threads.h
+--- libthrowable-1.1.0.orig/libthrowable/internal/posix_threads.h	2008-09-06 13:37:20.000000000 +0200
++++ libthrowable-1.1.0/libthrowable/internal/posix_threads.h	2008-09-06 13:38:17.000000000 +0200
+@@ -20,10 +20,11 @@
+ #ifndef H_LIBTHROWABLE_POSIX_THREADS
+ #define H_LIBTHROWABLE_POSIX_THREADS
+ #include <errno.h>
+ #include <pthread.h>
+ #include <sstream>
++#include <cstring>
+ #include "libthrowable/internal/internal.h"
+ #include "libthrowable/macros/here.h"
+ namespace libthrowable {
+ namespace internal {
+ namespace posix {






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-cpp/libthrowable/files: libthrowable-1.1.0-gcc43.diff
@ 2009-09-27 12:34 Thomas Anderson (tanderson)
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Anderson (tanderson) @ 2009-09-27 12:34 UTC (permalink / raw
  To: gentoo-commits

tanderson    09/09/27 12:34:18

  Modified:             libthrowable-1.1.0-gcc43.diff
  Log:
  Add gcc-4.3 patch for tests. Thanks to Dustin Polke for the report and initial patch.
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  dev-cpp/libthrowable/files/libthrowable-1.1.0-gcc43.diff

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/libthrowable/files/libthrowable-1.1.0-gcc43.diff?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/libthrowable/files/libthrowable-1.1.0-gcc43.diff?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-cpp/libthrowable/files/libthrowable-1.1.0-gcc43.diff?r1=1.2&r2=1.3

Index: libthrowable-1.1.0-gcc43.diff
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-cpp/libthrowable/files/libthrowable-1.1.0-gcc43.diff,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libthrowable-1.1.0-gcc43.diff	6 Sep 2008 11:44:50 -0000	1.2
+++ libthrowable-1.1.0-gcc43.diff	27 Sep 2009 12:34:17 -0000	1.3
@@ -30,3 +30,13 @@
  namespace libthrowable {
  namespace internal {
  namespace posix {
+--- libthrowable-1.1.0.orig/tests/t_libthrowable.cc.old	2009-06-30 16:19:43.000000000 +0200
++++ libthrowable-1.1.0/tests/t_libthrowable.cc	2009-06-30 16:21:01.000000000 +0200
+@@ -23,6 +23,7 @@
+ #include "libthrowable.h"
+ #include "libthrowable/internal/internal.h"
+ #include "libthrowable/streams.h"
++#include <cstdlib>
+ #include <iostream>
+ #include <sstream>
+ #ifdef HAVE_PTHREAD






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in dev-cpp/libthrowable/files: libthrowable-1.1.0-gcc43.diff
@ 2011-05-22 15:41 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 4+ messages in thread
From: Christian Faulhammer (fauli) @ 2011-05-22 15:41 UTC (permalink / raw
  To: gentoo-commits

fauli       11/05/22 15:41:24

  Removed:              libthrowable-1.1.0-gcc43.diff
  Log:
  Removal of mail-client/claws-mail-cachesaver, bug 363927



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2011-05-22 15:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-27 12:34 [gentoo-commits] gentoo-x86 commit in dev-cpp/libthrowable/files: libthrowable-1.1.0-gcc43.diff Thomas Anderson (tanderson)
  -- strict thread matches above, loose matches on Subject: below --
2011-05-22 15:41 Christian Faulhammer (fauli)
2008-09-06 11:44 Peter Alfredsen (loki_val)
2008-05-03 18:57 Hanno Boeck (hanno)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox