aboutsummaryrefslogtreecommitdiff
path: root/games/warmux/patches
diff options
context:
space:
mode:
authorHeinz Wiesinger <pprkut@slackbuilds.org>2021-04-22 16:34:58 +0200
committerRobby Workman <rworkman@slackbuilds.org>2021-04-22 20:17:42 -0500
commit7af6f7b9246a8353f54902c150b67ac10e7939e1 (patch)
tree65d2953894d69cc2f206bdb8e131d24dbd81725b /games/warmux/patches
parent5d3d5f874ff9e16e51e3ff0539caa17efa953afc (diff)
games/warmux: Removed.
Abandoned upstream. games/hedgewars is probably better anyway. Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
Diffstat (limited to 'games/warmux/patches')
-rw-r--r--games/warmux/patches/gcc47.patch9
-rw-r--r--games/warmux/patches/include-zlib.patch11
-rw-r--r--games/warmux/patches/return-null.patch11
3 files changed, 0 insertions, 31 deletions
diff --git a/games/warmux/patches/gcc47.patch b/games/warmux/patches/gcc47.patch
deleted file mode 100644
index e51801a369..0000000000
--- a/games/warmux/patches/gcc47.patch
+++ /dev/null
@@ -1,9 +0,0 @@
-diff -Naur warmux-11.04.orig/tools/list_games/main.cpp warmux-11.04/tools/list_games/main.cpp
---- warmux-11.04.orig/tools/list_games/main.cpp 2011-04-28 21:03:12.000000000 +0200
-+++ warmux-11.04/tools/list_games/main.cpp 2012-04-01 10:03:27.752999997 +0200
-@@ -1,4 +1,5 @@
- #include <stdio.h>
-+#include <unistd.h>
- #include <WARMUX_types.h>
- #include <WARMUX_network.h>
- #include <WARMUX_index_server.h>
diff --git a/games/warmux/patches/include-zlib.patch b/games/warmux/patches/include-zlib.patch
deleted file mode 100644
index c7e77aba11..0000000000
--- a/games/warmux/patches/include-zlib.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-diff -uNr warmux-11.04.orig/src/graphic/surface.cpp warmux-11.04/src/graphic/surface.cpp
---- warmux-11.04.orig/src/graphic/surface.cpp 2011-09-19 09:26:52.392650465 +0200
-+++ warmux-11.04/src/graphic/surface.cpp 2011-09-19 09:26:19.417648189 +0200
-@@ -25,6 +25,7 @@
- #include <SDL_image.h>
- #include <SDL_rotozoom.h>
- #include <png.h>
-+#include <zlib.h>
-
- #include "graphic/surface.h"
- #include "tool/math_tools.h"
diff --git a/games/warmux/patches/return-null.patch b/games/warmux/patches/return-null.patch
deleted file mode 100644
index 851dfcbd16..0000000000
--- a/games/warmux/patches/return-null.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/interface/weapon_menu.cpp.orig 2016-05-09 15:22:36.895266463 +0200
-+++ src/interface/weapon_menu.cpp 2016-05-09 15:21:38.518476191 +0200
-@@ -391,7 +391,7 @@
- Weapon * WeaponsMenu::UpdateCurrentOverflyItem(const Polygon * poly)
- {
- if (!show)
-- return false;
-+ return NULL;
- const std::vector<PolygonItem *>& items = poly->GetItem();
- WeaponMenuItem * tmp;
- Interface::GetInstance()->SetCurrentOverflyWeapon(NULL);