summaryrefslogtreecommitdiff
path: root/games-board/blokish/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:58:29 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:58:29 +0100
commit0cf2f20608308acdf3cb922c3736446bbd8f3388 (patch)
tree07815070629c7c11000a7f51ceb8ccbccb49a809 /games-board/blokish/files
parent1798c4aeca70ac8d0a243684d6a798fbc65735f8 (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'games-board/blokish/files')
-rw-r--r--games-board/blokish/files/blokish-0.9.4-gcc43.patch12
-rw-r--r--games-board/blokish/files/blokish-0.9.4-underlink.patch9
-rw-r--r--games-board/blokish/files/blokish-0.9.4-wxgtk.patch21
3 files changed, 0 insertions, 42 deletions
diff --git a/games-board/blokish/files/blokish-0.9.4-gcc43.patch b/games-board/blokish/files/blokish-0.9.4-gcc43.patch
deleted file mode 100644
index f53e5495aa57..000000000000
--- a/games-board/blokish/files/blokish-0.9.4-gcc43.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- a/src/base.h
-+++ b/src/base.h
-@@ -25,6 +25,9 @@
- #include <vector>
- #include <fstream>
- #include <iostream>
-+#include <algorithm>
-+#include <cstdlib>
-+#include <climits>
-
- enum BlokishID
- {
diff --git a/games-board/blokish/files/blokish-0.9.4-underlink.patch b/games-board/blokish/files/blokish-0.9.4-underlink.patch
deleted file mode 100644
index a4433379e37a..000000000000
--- a/games-board/blokish/files/blokish-0.9.4-underlink.patch
+++ /dev/null
@@ -1,9 +0,0 @@
---- a/makefile.am 2011-06-21 08:43:21.804880067 +0200
-+++ b/makefile.am 2011-06-21 08:43:49.875661081 +0200
-@@ -1,5 +1,5 @@
- INCLUDES = `wx-config --cxxflags`
--LIBS = `wx-config --libs --gl-libs`
-+LIBS = `wx-config --libs --gl-libs` -lGL -lm
-
- bin_PROGRAMS = blokish
-
diff --git a/games-board/blokish/files/blokish-0.9.4-wxgtk.patch b/games-board/blokish/files/blokish-0.9.4-wxgtk.patch
deleted file mode 100644
index 1821e0b5f86d..000000000000
--- a/games-board/blokish/files/blokish-0.9.4-wxgtk.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff -ru blokish/src/blokish.cpp blokish/src/blokish.cpp
---- blokish/src/blokish.cpp 2007-04-01 17:01:26.000000000 -0400
-+++ blokish/src/blokish.cpp 2015-11-15 21:48:32.426081482 -0500
-@@ -903,7 +903,7 @@
- void OnSaveGame(wxCommandEvent &event)
- {
- WaitForAIToFinish();
-- wxString filename = wxFileSelector(wxString::FromAscii("Select a filename to save as"), wxString::FromAscii(""), wxString::FromAscii("default.sav"), wxString::FromAscii(".sav"), wxString::FromAscii("*.sav"), wxSAVE);
-+ wxString filename = wxFileSelector(wxString::FromAscii("Select a filename to save as"), wxString::FromAscii(""), wxString::FromAscii("default.sav"), wxString::FromAscii(".sav"), wxString::FromAscii("*.sav"), wxFD_SAVE);
- if(!filename.empty())
- {
- std::ofstream outFile(filename.fn_str(), std::ios::binary);
-@@ -915,7 +915,7 @@
- void OnLoadGame(wxCommandEvent &event)
- {
- WaitForAIToFinish();
-- wxString filename = wxFileSelector(wxString::FromAscii("Select a game to load"), wxString::FromAscii(""), wxString::FromAscii(""), wxString::FromAscii(".sav"), wxString::FromAscii("*.sav"), wxOPEN | wxFILE_MUST_EXIST);
-+ wxString filename = wxFileSelector(wxString::FromAscii("Select a game to load"), wxString::FromAscii(""), wxString::FromAscii(""), wxString::FromAscii(".sav"), wxString::FromAscii("*.sav"), wxFD_OPEN | wxFD_FILE_MUST_EXIST);
- if(!filename.empty())
- {
- std::ifstream inFile(filename.fn_str(), std::ios::binary);