From nobody Fri Oct 15 17:48:28 2021 X-Original-To: dev-commits-ports-all@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 3D079180C51D; Fri, 15 Oct 2021 17:48:29 +0000 (UTC) (envelope-from git@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 "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4HWDJs0zdbz4qZj; Fri, 15 Oct 2021 17:48:29 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (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 did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F17D42B82; Fri, 15 Oct 2021 17:48:28 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 19FHmSYQ094047; Fri, 15 Oct 2021 17:48:28 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 19FHmS7v094046; Fri, 15 Oct 2021 17:48:28 GMT (envelope-from git) Date: Fri, 15 Oct 2021 17:48:28 GMT Message-Id: <202110151748.19FHmS7v094046@gitrepo.freebsd.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org From: Gerald Pfeifer Subject: git: 3d1ff1fdae49 - main - Mk/bsd.gcc.mk: Remove USE_GCC=any List-Id: Commit messages for all branches of the ports repository List-Archive: https://lists.freebsd.org/archives/dev-commits-ports-all List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-ports-all@freebsd.org X-BeenThere: dev-commits-ports-all@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: gerald X-Git-Repository: ports X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 3d1ff1fdae49931a3572adc81519f3a277a77253 Auto-Submitted: auto-generated X-ThisMailContainsUnwantedMimeParts: N The branch main has been updated by gerald: URL: https://cgit.FreeBSD.org/ports/commit/?id=3d1ff1fdae49931a3572adc81519f3a277a77253 commit 3d1ff1fdae49931a3572adc81519f3a277a77253 Author: Gerald Pfeifer AuthorDate: 2021-10-15 17:43:11 +0000 Commit: Gerald Pfeifer CommitDate: 2021-10-15 17:47:53 +0000 Mk/bsd.gcc.mk: Remove USE_GCC=any We have recommended against USE_GCC=any for a while, and as of more recently it was completely equivalent to USE_GCC=yes. With (ancient versions of) GCC hardly available in the base system of FreeBSD systems at this point, there's unlikely to be a use case to reintroduce it, so remove the few remaining traces. PR: 258015 --- Mk/bsd.gcc.mk | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Mk/bsd.gcc.mk b/Mk/bsd.gcc.mk index 5a8d5d20d4e6..b0d01006f68b 100644 --- a/Mk/bsd.gcc.mk +++ b/Mk/bsd.gcc.mk @@ -21,9 +21,6 @@ # If no arguments are specified, GCC is added as both a build dependency # and a run time dependency. # -# (USE_GCC=any is deprecated - and now an odd way to write USE_GCC=yes. -# Do *not* use! It will be removed shortly.) -# # # Examples: # USE_GCC= yes # port requires a current version of GCC @@ -68,8 +65,8 @@ IGNORE= bad target specification in USE_GCC; only "build" is supported .if defined(USE_GCC) && !defined(FORCE_BASE_CC_FOR_TESTING) -# Handle USE_GCC=yes and USE_GCC=any. -.if ${USE_GCC} == yes || ${USE_GCC} == any +# Handle USE_GCC=yes. +.if ${USE_GCC} == yes USE_GCC= ${GCC_DEFAULT}+ .endif