svn commit: r444423 - in head/games/xscavenger: . files
Jan Beich
jbeich at FreeBSD.org
Mon Jun 26 22:49:55 UTC 2017
Author: jbeich
Date: Mon Jun 26 22:49:53 2017
New Revision: 444423
URL: https://svnweb.freebsd.org/changeset/ports/444423
Log:
games/xscavenger: fix font mapping with Clang or GCC 7.*
Characters of user name and some menu couldn't display the correct
letters because of incorrect font mapping.
PR: 220106
Submitted by: Yasuhito FUTATSUKI
MFH: 2017Q2
Added:
head/games/xscavenger/files/patch-x.c (contents, props changed)
Modified:
head/games/xscavenger/Makefile (contents, props changed)
Modified: head/games/xscavenger/Makefile
==============================================================================
--- head/games/xscavenger/Makefile Mon Jun 26 22:39:04 2017 (r444422)
+++ head/games/xscavenger/Makefile Mon Jun 26 22:49:53 2017 (r444423)
@@ -3,6 +3,7 @@
PORTNAME= xscavenger
PORTVERSION= 1.4.5
+PORTREVISION= 1
CATEGORIES= games
MASTER_SITES= http://www.linuxmotors.com/scavenger/downloads/
Added: head/games/xscavenger/files/patch-x.c
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/games/xscavenger/files/patch-x.c Mon Jun 26 22:49:53 2017 (r444423)
@@ -0,0 +1,12 @@
+--- x.c.orig 2014-11-18 19:58:49 UTC
++++ x.c
+@@ -445,7 +445,8 @@ int i;
+ i=0;
+ while(*p)
+ {
+- fmap[tolower(*p)]=fmap[*p++]=i++;
++ fmap[tolower(*p)]=fmap[*p]=i++;
++ p++;
+ }
+ }
+
More information about the svn-ports-all
mailing list