From owner-svn-ports-head@freebsd.org Tue Apr 30 14:18:37 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 55CDB1592F41; Tue, 30 Apr 2019 14:18:37 +0000 (UTC) (envelope-from pkubaj@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) server-signature RSA-PSS (4096 bits) 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 C9C25734EE; Tue, 30 Apr 2019 14:18:36 +0000 (UTC) (envelope-from pkubaj@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 A5DE6ABB2; Tue, 30 Apr 2019 14:18:36 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x3UEIaKP072048; Tue, 30 Apr 2019 14:18:36 GMT (envelope-from pkubaj@FreeBSD.org) Received: (from pkubaj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x3UEIapm072047; Tue, 30 Apr 2019 14:18:36 GMT (envelope-from pkubaj@FreeBSD.org) Message-Id: <201904301418.x3UEIapm072047@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pkubaj set sender to pkubaj@FreeBSD.org using -f From: Piotr Kubaj Date: Tue, 30 Apr 2019 14:18:36 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r500494 - head/games/vegastrike/files X-SVN-Group: ports-head X-SVN-Commit-Author: pkubaj X-SVN-Commit-Paths: head/games/vegastrike/files X-SVN-Commit-Revision: 500494 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: C9C25734EE X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.96 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.96)[-0.958,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Apr 2019 14:18:37 -0000 Author: pkubaj Date: Tue Apr 30 14:18:36 2019 New Revision: 500494 URL: https://svnweb.freebsd.org/changeset/ports/500494 Log: games/vegastrike: fix build with GCC-based architectures Replace . with -> (for accessing a pointer) in src/cmd/unit_collide.h PR: 237034 Approved by: mat (mentor) Differential Revision: https://reviews.freebsd.org/D20090 Added: head/games/vegastrike/files/patch-src_cmd_unit__collide.h (contents, props changed) Added: head/games/vegastrike/files/patch-src_cmd_unit__collide.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/games/vegastrike/files/patch-src_cmd_unit__collide.h Tue Apr 30 14:18:36 2019 (r500494) @@ -0,0 +1,14 @@ +--- src/cmd/unit_collide.h.orig 2019-04-05 07:20:53 UTC ++++ src/cmd/unit_collide.h +@@ -94,9 +94,9 @@ class UnitHash3d (public) + { + if ( !hugeobjects.empty() ) + hugeobjects.clear(); +- if ( this->active_huge.size() ) ++ if ( this->active_huge->size() ) + ha.clear(); +- if ( this->accum_huge.size() ) ++ if ( this->accum_huge->size() ) + hb.clear(); + acc_huge.clear(); + act_huge.clear();