From 519123ffd3eb52bf78df35b16e888da02ad485f3 Mon Sep 17 00:00:00 2001 From: Larry Hajali Date: Fri, 21 Dec 2012 11:37:41 +0100 Subject: games/megaglest: Updated for version 3.7.1. Noted the optional dependency vlc Signed-off-by: Matteo Bernardini --- games/megaglest/gcc-4.7.patch | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 games/megaglest/gcc-4.7.patch (limited to 'games/megaglest/gcc-4.7.patch') diff --git a/games/megaglest/gcc-4.7.patch b/games/megaglest/gcc-4.7.patch deleted file mode 100644 index 3d118b1a9c..0000000000 --- a/games/megaglest/gcc-4.7.patch +++ /dev/null @@ -1,28 +0,0 @@ ---- trunk/source/shared_lib/sources/util/util.cpp 2012/04/14 21:21:09 3244 -+++ trunk/source/shared_lib/sources/util/util.cpp 2012/05/01 14:55:06 3279 -@@ -22,6 +22,8 @@ - - #ifdef WIN32 - #include // for open() -+#else -+ #include - #endif - - #include // for open() ---- trunk/source/shared_lib/include/graphics/math_util.h 2012/04/16 20:15:57 3252 -+++ trunk/source/shared_lib/include/graphics/math_util.h 2012/05/01 14:55:06 3279 -@@ -184,10 +184,10 @@ - - Rect2 computeBoundingRect() const{ - return Rect2i( -- min(p[0].x, p[1].x), -- min(p[0].y, p[2].y), -- max(p[2].x, p[3].x), -- max(p[1].y, p[3].y)); -+ std::min(p[0].x, p[1].x), -+ std::min(p[0].y, p[2].y), -+ std::max(p[2].x, p[3].x), -+ std::max(p[1].y, p[3].y)); - } - - bool isInside(const Vec2 &pt) const{ -- cgit v1.2.3