Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 26 Jun 2017 22:49:53 +0000 (UTC)
From:      Jan Beich <jbeich@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r444423 - in head/games/xscavenger: . files
Message-ID:  <201706262249.v5QMnrDZ053109@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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++;
+ 	}
+ }
+ 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201706262249.v5QMnrDZ053109>