From 7d83d1ab14122006c509fceca3cabc6378a15cff Mon Sep 17 00:00:00 2001 From: Michael Mair-Keimberger Date: Wed, 27 Dec 2017 10:56:56 +0100 Subject: games-util/gtkevemon: remove unused patches --- .../gtkevemon/files/gtkevemon-1.8-portrait.patch | 17 ------------ .../files/gtkevemon-1.8-pthreads-build-fix.patch | 32 ---------------------- 2 files changed, 49 deletions(-) delete mode 100644 games-util/gtkevemon/files/gtkevemon-1.8-portrait.patch delete mode 100644 games-util/gtkevemon/files/gtkevemon-1.8-pthreads-build-fix.patch (limited to 'games-util') diff --git a/games-util/gtkevemon/files/gtkevemon-1.8-portrait.patch b/games-util/gtkevemon/files/gtkevemon-1.8-portrait.patch deleted file mode 100644 index 8c2f4716ccca..000000000000 --- a/games-util/gtkevemon/files/gtkevemon-1.8-portrait.patch +++ /dev/null @@ -1,17 +0,0 @@ -http://trac.battleclinic.com:8000/gtkevemon/changeset/121/trunk/gtkevemon/src/gtkportrait.cc - -Index: trunk/gtkevemon/src/gtkportrait.cc -=================================================================== ---- trunk/gtkevemon/src/gtkportrait.cc (revision 109) -+++ trunk/gtkevemon/src/gtkportrait.cc (revision 121) -@@ -107,6 +107,8 @@ - - AsyncHttp* http = AsyncHttp::create();; -- http->set_host("img.eve.is"); -- http->set_path("/serv.asp?s=256&c=" + this->char_id); -+ //http->set_host("img.eve.is"); -+ //http->set_path("/serv.asp?s=256&c=" + this->char_id); -+ http->set_host("image.eveonline.com"); -+ http->set_path("/Character/" + this->char_id + "_256.jpg"); - Config::setup_http(http); - diff --git a/games-util/gtkevemon/files/gtkevemon-1.8-pthreads-build-fix.patch b/games-util/gtkevemon/files/gtkevemon-1.8-pthreads-build-fix.patch deleted file mode 100644 index 3250680c7aa1..000000000000 --- a/games-util/gtkevemon/files/gtkevemon-1.8-pthreads-build-fix.patch +++ /dev/null @@ -1,32 +0,0 @@ -https://bugs.gentoo.org/show_bug.cgi?id=423305 -https://bitbucket.org/BattleClinic/gtkevemon/changeset/4c365033418e - -# HG changeset patch -# User ChickenMan -# Date 1341445681 -7200 -# Node ID 4c365033418e2213caff57a0917851cc18c7f1a1 -# Parent 0b8a490b5f491bdd4a36d85918479595c861d3db -Fix compilation on systems using pthreads and gcc 4.7.x - -This fixes issue 1. -Thanks to l0ser140 for reporting and initial patch. - ---- src/thread.h -+++ src/thread.h -@@ -13,7 +13,15 @@ - #ifndef THREAD_HEADER - #define THREAD_HEADER - --#if defined(_POSIX_THREADS) || defined(__SunOS) -+#if defined(__linux__) \ -+ || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) \ -+ || defined(__DragonFly__) \ -+ || defined(__APPLE__) \ -+ || defined(__SunOS) -+# include // for _POSIX_THREADS -+#endif -+ -+#if defined(_POSIX_THREADS) - # include "thread_posix.h" - #elif defined(WIN32) - # include "thread_win32.h" -- cgit v1.2.3-65-gdbad