From owner-svn-ports-head@freebsd.org Sat Jul 13 06:12:47 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 C815E15E1031; Sat, 13 Jul 2019 06:12:47 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (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 "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 693226FDA9; Sat, 13 Jul 2019 06:12:47 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 3D26A15436; Sat, 13 Jul 2019 06:12:47 +0000 (UTC) From: Jan Beich To: Mark Linimon Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r506498 - in head: devel/py-lxml editors/encryptpad games/lpairs graphics/comical lang/harbour mail/archiveopteryx mail/archiveopteryx-devel multimedia/oscam news/nget References: <201907130007.x6D07Z4Z010235@repo.freebsd.org> Date: Sat, 13 Jul 2019 08:12:42 +0200 In-Reply-To: <201907130007.x6D07Z4Z010235@repo.freebsd.org> (Mark Linimon's message of "Sat, 13 Jul 2019 00:07:35 +0000 (UTC)") Message-ID: <8st2-ea3p-wny@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain X-Rspamd-Queue-Id: 693226FDA9 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.98 / 15.00]; local_wl_from(0.00)[freebsd.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.998,0]; NEURAL_HAM_SHORT(-0.98)[-0.983,0]; NEURAL_HAM_LONG(-1.00)[-0.999,0]; ASN(0.00)[asn:11403, ipnet:96.47.64.0/20, 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: Sat, 13 Jul 2019 06:12:48 -0000 Mark Linimon writes: > Modified: head/devel/py-lxml/Makefile > ============================================================================== > --- head/devel/py-lxml/Makefile Fri Jul 12 23:58:22 2019 (r506497) > +++ head/devel/py-lxml/Makefile Sat Jul 13 00:07:35 2019 (r506498) > @@ -13,7 +13,7 @@ COMMENT= Pythonic binding for the libxml2 and libxslt > LICENSE= BSD3CLAUSE > LICENSE_FILE= ${WRKSRC}/doc/licenses/BSD.txt > > -USES= gnome python uniquefiles:dirs > +USES= compiler gnome python uniquefiles:dirs > USE_GNOME= libxml2 libxslt > USE_PYTHON= autoplist concurrent distutils > > @@ -35,8 +35,8 @@ post-install-DOCS-on: > > .include > > -# on gcc-based architectures, use modern GCC due to use of #pragma > -.if ${ARCH} == mips || ${ARCH} == mips64 || ${ARCH} == powerpc || ${ARCH} == powerpc64 || ${ARCH} == powerpcspe || ${ARCH} == sparc64 > +# if using gcc, force modern GCC due to use of #pragma > +.if ${CHOSEN_COMPILER_TYPE} == gcc > USE_GCC= yes > .endif Why not simplify to USES=compiler:c11 ?