From owner-svn-ports-branches@freebsd.org Sun Feb 11 06:34:53 2018 Return-Path: Delivered-To: svn-ports-branches@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 57AFAF1AC49; Sun, 11 Feb 2018 06:34:53 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0C9E886E8E; Sun, 11 Feb 2018 06:34:53 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id ED3514E48; Sun, 11 Feb 2018 06:34:52 +0000 (UTC) From: Jan Beich To: Yasuhiro KIMURA Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: Re: svn commit: r461290 - in head: databases/evolution-data-server devel/icu devel/icu-le-hb devel/icu/files devel/pecl-intl devel/php70-intl devel/php71-intl devel/php72-intl games/openttd lang/phanto... References: <201802090912.w199Cmhi022746@repo.freebsd.org> <20180209.203417.46549680734161577.yasu@utahime.org> Date: Sun, 11 Feb 2018 07:34:47 +0100 In-Reply-To: <20180209.203417.46549680734161577.yasu@utahime.org> (Yasuhiro KIMURA's message of "Fri, 09 Feb 2018 20:34:17 +0900 (JST)") Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: svn-ports-branches@freebsd.org X-Mailman-Version: 2.1.25 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: Sun, 11 Feb 2018 06:34:53 -0000 (Adding back CC list) Yasuhiro KIMURA writes: >> Author: jbeich >> Date: Fri Feb 9 09:12:48 2018 >> New Revision: 461290 >> URL: https://svnweb.freebsd.org/changeset/ports/461290 >> >> Log: >> devel/icu: drop C++98 compatibility workarounds >> >> Now that both USE_GCC and -CURRENT default to C++14 there's little >> reason to complicate maintenance. Revert r449685 to usher consumers >> into post-C++11 world. >> >> PR: 222433 222434 222435 > > After this commit 'make describe' in misc/sword cause some error(?) > message as following. > > yasu@eastasia[2283]% pwd > /usr/ports/misc/sword > yasu@eastasia[2284]% svnversion > 461290 > yasu@eastasia[2285]% make describe > sh: clang38: not found > make: "/usr0/freebsd/ports/ports/Mk/Uses/compiler.mk" line 69: warning: "clang38 --version" returned non-zero status > make: "/usr0/freebsd/ports/ports/Mk/Uses/compiler.mk" line 112: warning: "clang++38 -### /dev/null 2>&1" returned non-zero status Once the patch in bug 225276 lands it'd go away. USES=compiler:c++11-lib is used on some Tier2 platforms to switch from /usr/bin/gcc to lang/gcc*. r459270 broke such platforms, so the warning is a good reminder the workaround is gross.