From owner-svn-ports-branches@freebsd.org Thu Feb 2 07:35:00 2017 Return-Path: Delivered-To: svn-ports-branches@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9363ECCD89F; Thu, 2 Feb 2017 07:35:00 +0000 (UTC) (envelope-from jbeich@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 mx1.freebsd.org (Postfix) with ESMTPS id 45D9816CA; Thu, 2 Feb 2017 07:35:00 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v127YxND048312; Thu, 2 Feb 2017 07:34:59 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v127Yxlg048309; Thu, 2 Feb 2017 07:34:59 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201702020734.v127Yxlg048309@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Thu, 2 Feb 2017 07:34:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r433125 - in branches/2017Q1/games: frobtads frobtads/files qtads qtads/files X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for all the branches of the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Feb 2017 07:35:00 -0000 Author: jbeich Date: Thu Feb 2 07:34:58 2017 New Revision: 433125 URL: https://svnweb.freebsd.org/changeset/ports/433125 Log: MFH: r432973 r432974 games/frobtads, games/qtads: unbreak with clang 4.0 tads3/vmtz.cpp:1987:30: error: ordered comparison between pointer and zero ('vmtz_trans *' and 'int') result->set(tcur > 0 ? tcur - 1 : tcur); ~~~~ ^ ~ PR: 216357 Reported by: antoine (via exp-run) Submitted by: kaiwang27@gmail.com (maintainer) Approved by: ports-secteam blanket Added: branches/2017Q1/games/frobtads/files/ - copied from r432973, head/games/frobtads/files/ branches/2017Q1/games/qtads/files/patch-tads3_vmtz.cpp - copied unchanged from r432974, head/games/qtads/files/patch-tads3_vmtz.cpp Modified: branches/2017Q1/games/frobtads/Makefile branches/2017Q1/games/qtads/Makefile Directory Properties: branches/2017Q1/ (props changed) Modified: branches/2017Q1/games/frobtads/Makefile ============================================================================== --- branches/2017Q1/games/frobtads/Makefile Thu Feb 2 07:06:18 2017 (r433124) +++ branches/2017Q1/games/frobtads/Makefile Thu Feb 2 07:34:58 2017 (r433125) @@ -3,6 +3,7 @@ PORTNAME= frobtads PORTVERSION= 1.2.3 +PORTREVISION= 1 CATEGORIES= games lang MASTER_SITES= http://www.tads.org/${PORTNAME}/ \ http://www.ifarchive.org/if-archive/programming/tads3/source/ Modified: branches/2017Q1/games/qtads/Makefile ============================================================================== --- branches/2017Q1/games/qtads/Makefile Thu Feb 2 07:06:18 2017 (r433124) +++ branches/2017Q1/games/qtads/Makefile Thu Feb 2 07:34:58 2017 (r433125) @@ -3,7 +3,7 @@ PORTNAME= qtads PORTVERSION= 2.1.6 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= games MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-2.x/${PORTVERSION} Copied: branches/2017Q1/games/qtads/files/patch-tads3_vmtz.cpp (from r432974, head/games/qtads/files/patch-tads3_vmtz.cpp) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2017Q1/games/qtads/files/patch-tads3_vmtz.cpp Thu Feb 2 07:34:58 2017 (r433125, copy of r432974, head/games/qtads/files/patch-tads3_vmtz.cpp) @@ -0,0 +1,11 @@ +--- tads3/vmtz.cpp.orig 2012-08-31 05:09:31 UTC ++++ tads3/vmtz.cpp +@@ -1982,7 +1982,7 @@ void CVmTimeZone::query(vmtzquery *resul + * the transition in terms of the local time that was in effect + * up until that moment + */ +- result->set(tcur > 0 ? tcur - 1 : tcur); ++ result->set(cur > 0 ? tcur - 1 : tcur); + return; + } + }