View | Details | Raw Unified | Return to bug 206376 | Differences between
and this patch

Collapse All | Expand All

(-)Makefile (-2 / +1 lines)
Lines 1-8 Link Here
1
# $FreeBSD$
1
# $FreeBSD$
2
2
3
PORTNAME=	mednafen
3
PORTNAME=	mednafen
4
PORTVERSION=	0.9.33.2
4
PORTVERSION=	0.9.38.7
5
PORTREVISION=	4
6
PORTEPOCH=	1
5
PORTEPOCH=	1
7
CATEGORIES=	emulators games
6
CATEGORIES=	emulators games
8
MASTER_SITES=	http://mednafen.fobby.net/releases/files/
7
MASTER_SITES=	http://mednafen.fobby.net/releases/files/
(-)distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (mednafen-0.9.33.2.tar.bz2) = d3125d5b6fe84031c7c7980bea655ec609c2620067988cfd32d2b2c5e6c3ad4e
1
SHA256 (mednafen-0.9.38.7.tar.bz2) = 1bb3beef883a325c35d1a1ce14959c307a4c321f2ea29d4ddb216c6dd03aded8
2
SIZE (mednafen-0.9.33.2.tar.bz2) = 4298456
2
SIZE (mednafen-0.9.38.7.tar.bz2) = 3882418
(-)files/patch-src-snes-src-lib-nall_property.hpp (-14 lines)
Lines 1-14 Link Here
1
--- src/snes/src/lib/nall/property.hpp	2013-08-31 16:33:30.000000000 -0500
2
+++ src/snes/src/lib/nall/property.hpp	2014-04-05 18:58:31.000000000 -0500
3
@@ -61,7 +61,11 @@
4
       operator T&() { return value; }
5
       const T& operator=(const T& value_) { return value = value_; }
6
       T value;
7
+#if defined(__clang__)
8
+      friend typename traits<C>::type;
9
+#else
10
       friend class traits<C>::type;
11
+#endif
12
     };
13
 
14
     template<typename T> struct writeonly {
(-)files/patch-src__nes__unif.cpp (-11 lines)
Lines 1-11 Link Here
1
--- src/nes/unif.cpp.orig	2014-10-01 15:17:53 UTC
2
+++ src/nes/unif.cpp
3
@@ -191,7 +191,7 @@
4
  MDFN_printf(_("Dumped by: %s\n"),name);
5
  MDFN_printf(_("Dumped with: %s\n"),method);
6
  {
7
-  char *months[12]={_("January"),_("February"),_("March"),_("April"),_("May"),_("June"),_("July"),
8
+  const char *months[12]={_("January"),_("February"),_("March"),_("April"),_("May"),_("June"),_("July"),
9
 		    _("August"),_("September"),_("October"),_("November"),_("December")};
10
   MDFN_printf(_("Dumped on: %s %d, %d\n"),months[(m-1)%12],d,y);
11
  }

Return to bug 206376