svn commit: r546767 - head/emulators/zsnes/files

Niclas Zeising zeising at FreeBSD.org
Fri Aug 28 17:39:55 UTC 2020


Author: zeising
Date: Fri Aug 28 17:39:55 2020
New Revision: 546767
URL: https://svnweb.freebsd.org/changeset/ports/546767

Log:
  emulators/zsnes: Fix build with -fno-common
  
  Fix the build of emulators/zsnes when built with -fno-common, which is the
  default with llvm 11.
  
  MFH:		2020Q3 (implicit, -fno-common fixes, ok by joenum)

Added:
  head/emulators/zsnes/files/patch-initc.c   (contents, props changed)

Added: head/emulators/zsnes/files/patch-initc.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/emulators/zsnes/files/patch-initc.c	Fri Aug 28 17:39:55 2020	(r546767)
@@ -0,0 +1,11 @@
+--- initc.c.orig	2020-08-28 17:31:26 UTC
++++ initc.c
+@@ -1495,7 +1495,7 @@ Would be nice to trash this section in the future
+ extern unsigned char ENVDisable, cycpb268, cycpb358, cycpbl2, cycpblt2, cycpbl;
+ extern unsigned char cycpblt, opexec268, opexec358, opexec268b, opexec358b;
+ extern unsigned char opexec268cph, opexec358cph, opexec268cphb, opexec358cphb;
+-bool HacksDisable;
++extern bool HacksDisable;
+ 
+ void headerhack()
+ {


More information about the svn-ports-head mailing list