summaryrefslogtreecommitdiffstats
path: root/games/mupen64plus/ftbfs-gvariant-type-conflicts.patch
diff options
context:
space:
mode:
author M.Dinslage <daedra1980{at}gmail{dot}com>2013-07-19 12:44:42 -0500
committer Erik Hanson <erik@slackbuilds.org>2013-07-19 12:46:59 -0500
commit214f2dd4a2cb8c25d556271923028f0b4809adfe (patch)
treecd8072cacabb4f25ffb43b4bf93ba275d08785d0 /games/mupen64plus/ftbfs-gvariant-type-conflicts.patch
parentdc14a41ed6b5521845687699b33e935a08d17706 (diff)
downloadslackbuilds-214f2dd4a2cb8c25d556271923028f0b4809adfe.tar.gz
slackbuilds-214f2dd4a2cb8c25d556271923028f0b4809adfe.tar.xz
games/mupen64plus: Updated for version 2.0.
Signed-off-by: Erik Hanson <erik@slackbuilds.org>
Diffstat (limited to 'games/mupen64plus/ftbfs-gvariant-type-conflicts.patch')
-rw-r--r--games/mupen64plus/ftbfs-gvariant-type-conflicts.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/games/mupen64plus/ftbfs-gvariant-type-conflicts.patch b/games/mupen64plus/ftbfs-gvariant-type-conflicts.patch
deleted file mode 100644
index 2a409d79f9..0000000000
--- a/games/mupen64plus/ftbfs-gvariant-type-conflicts.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff --git a/rice_video/typedefs.h b/rice_video/typedefs.h
-index 4cded542b06445f043fa1fabf77e4d20c9d52920..b7e16e9c4ba3248f9fed9762f79349c137ee2026 100644
---- a/rice_video/typedefs.h
-+++ b/rice_video/typedefs.h
-@@ -20,10 +20,12 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- #ifndef _TYPEDEFS_H_
- #define _TYPEDEFS_H_
-
--#define uchar unsigned char
--#define uint16 unsigned short
--#define uint32 unsigned int
--#define uint64 unsigned long long
-+#include <stdint.h>
-+
-+typedef uint8_t uchar;
-+typedef uint16_t uint16;
-+typedef uint32_t uint32;
-+typedef uint64_t uint64;
-
- typedef unsigned char uint8;