From owner-svn-ports-all@freebsd.org Thu Sep 3 14:10:41 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 4BEC53E76ED; Thu, 3 Sep 2020 14:10:41 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Bj2lP1HbTz4VMD; Thu, 3 Sep 2020 14:10:41 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 0FA3F1CB27; Thu, 3 Sep 2020 14:10:41 +0000 (UTC) (envelope-from se@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 083EAe4l043716; Thu, 3 Sep 2020 14:10:40 GMT (envelope-from se@FreeBSD.org) Received: (from se@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 083EAePY043713; Thu, 3 Sep 2020 14:10:40 GMT (envelope-from se@FreeBSD.org) Message-Id: <202009031410.083EAePY043713@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: se set sender to se@FreeBSD.org using -f From: =?UTF-8?Q?Stefan_E=c3=9fer?= Date: Thu, 3 Sep 2020 14:10:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r547455 - in head/games/xblast: . files X-SVN-Group: ports-head X-SVN-Commit-Author: se X-SVN-Commit-Paths: in head/games/xblast: . files X-SVN-Commit-Revision: 547455 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Sep 2020 14:10:41 -0000 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