pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/emulators/x16-emulator Fix ctype use. Bump revision
details: https://anonhg.NetBSD.org/pkgsrc/rev/fc1cbc4c590f
branches: trunk
changeset: 427666:fc1cbc4c590f
user: joerg <joerg%pkgsrc.org@localhost>
date: Sat Apr 18 22:04:18 2020 +0000
description:
Fix ctype use. Bump revision
diffstat:
emulators/x16-emulator/Makefile | 4 ++--
emulators/x16-emulator/distinfo | 3 ++-
emulators/x16-emulator/patches/patch-rendertext.c | 13 +++++++++++++
3 files changed, 17 insertions(+), 3 deletions(-)
diffs (44 lines):
diff -r 6a16b8df8d15 -r fc1cbc4c590f emulators/x16-emulator/Makefile
--- a/emulators/x16-emulator/Makefile Sat Apr 18 22:03:58 2020 +0000
+++ b/emulators/x16-emulator/Makefile Sat Apr 18 22:04:18 2020 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.2 2020/03/08 16:49:29 wiz Exp $
+# $NetBSD: Makefile,v 1.3 2020/04/18 22:04:18 joerg Exp $
DISTNAME= x16-emulator-35
-PKGREVISION= 1
+PKGREVISION= 2
CATEGORIES= emulators
MASTER_SITES= ${MASTER_SITE_GITHUB:=commanderx16/}
GITHUB_PROJECT= x16-emulator
diff -r 6a16b8df8d15 -r fc1cbc4c590f emulators/x16-emulator/distinfo
--- a/emulators/x16-emulator/distinfo Sat Apr 18 22:03:58 2020 +0000
+++ b/emulators/x16-emulator/distinfo Sat Apr 18 22:04:18 2020 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.1 2019/12/28 19:32:18 thorpej Exp $
+$NetBSD: distinfo,v 1.2 2020/04/18 22:04:18 joerg Exp $
SHA1 (x16-emulator-35.tar.gz) = 831e1acb2eecc5edb36f86925f00fabd6abb8321
RMD160 (x16-emulator-35.tar.gz) = 1b5945db7ba879978bf77e7ad5362a93c9a464c0
@@ -6,3 +6,4 @@
Size (x16-emulator-35.tar.gz) = 123338 bytes
SHA1 (patch-Makefile) = 450a069978bbd940d680437368dd880756879bd1
SHA1 (patch-main.c) = db0721d145546dd60ed40b8e9151cd26493e07ad
+SHA1 (patch-rendertext.c) = 81a7e50e7598827addf9aca1f05a22869f2ddeeb
diff -r 6a16b8df8d15 -r fc1cbc4c590f emulators/x16-emulator/patches/patch-rendertext.c
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/emulators/x16-emulator/patches/patch-rendertext.c Sat Apr 18 22:04:18 2020 +0000
@@ -0,0 +1,13 @@
+$NetBSD: patch-rendertext.c,v 1.1 2020/04/18 22:04:18 joerg Exp $
+
+--- rendertext.c.orig 2020-04-17 21:39:18.771500194 +0000
++++ rendertext.c
+@@ -22,7 +22,7 @@ int textureInitialized = 0;
+ //
+ char *ltrim(char *s)
+ {
+- while(isspace(*s)) s++;
++ while(isspace((unsigned char)*s)) s++;
+ return s;
+ }
+
Home |
Main Index |
Thread Index |
Old Index