Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 3 Sep 2020 14:10:40 +0000 (UTC)
From:      =?UTF-8?Q?Stefan_E=c3=9fer?= <se@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r547455 - in head/games/xblast: . files
Message-ID:  <202009031410.083EAePY043713@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: se
Date: Thu Sep  3 14:10:40 2020
New Revision: 547455
URL: https://svnweb.freebsd.org/changeset/ports/547455

Log:
  Fix build with -fno-common

Added:
  head/games/xblast/files/
  head/games/xblast/files/patch-cfg__control.h   (contents, props changed)
  head/games/xblast/files/patch-network.h   (contents, props changed)
Modified:
  head/games/xblast/Makefile

Modified: head/games/xblast/Makefile
==============================================================================
--- head/games/xblast/Makefile	Thu Sep  3 14:04:26 2020	(r547454)
+++ head/games/xblast/Makefile	Thu Sep  3 14:10:40 2020	(r547455)
@@ -3,7 +3,7 @@
 
 PORTNAME=	xblast
 PORTVERSION=	2.10.4
-PORTREVISION=	17
+PORTREVISION=	18
 CATEGORIES=	games
 MASTER_SITES=	SF/${PORTNAME}/Sources/${PORTVERSION} \
 		SF/${PORTNAME}/Images/${IMAGES_DATE}:images \

Added: head/games/xblast/files/patch-cfg__control.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/xblast/files/patch-cfg__control.h	Thu Sep  3 14:10:40 2020	(r547455)
@@ -0,0 +1,11 @@
+--- cfg_control.h.orig	2006-02-09 21:21:23 UTC
++++ cfg_control.h
+@@ -29,7 +29,7 @@
+ #define NUM_KEYB_CONTROLS  2
+ 
+ /* constant assignment of control to event type */
+-const XBEventCode keyEventType[NUM_KEYB_CONTROLS];
++extern const XBEventCode keyEventType[NUM_KEYB_CONTROLS];
+ 
+ /* ingame controls for editing*/
+ typedef struct

Added: head/games/xblast/files/patch-network.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/xblast/files/patch-network.h	Thu Sep  3 14:10:40 2020	(r547455)
@@ -0,0 +1,11 @@
+--- network.h.orig	2006-02-10 15:07:42 UTC
++++ network.h
+@@ -105,7 +105,7 @@ typedef enum
+ #define TEAM_UNDEF 252
+ 
+ /* team color assignment */
+-const XBColor teamColors[NUM_XBTS];
++extern const XBColor teamColors[NUM_XBTS];
+ 
+ /* results of game config receive/create */
+ typedef enum



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