From owner-svn-ports-all@freebsd.org Sun Oct 28 12:13:44 2018 Return-Path: Delivered-To: svn-ports-all@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 01BAE10CB131; Sun, 28 Oct 2018 12:13:44 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.3 with cipher TLS_AES_256_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 B083C80655; Sun, 28 Oct 2018 12:13:43 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id 941C129CF; Sun, 28 Oct 2018 12:13:43 +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: r483245 - head/biology/stacks References: <201810280858.w9S8w0sk015320@repo.freebsd.org> Date: Sun, 28 Oct 2018 13:13:41 +0100 In-Reply-To: <201810280858.w9S8w0sk015320@repo.freebsd.org> (Mark Linimon's message of "Sun, 28 Oct 2018 08:58:00 +0000 (UTC)") Message-ID: <5zxm-1d6y-wny@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Oct 2018 12:13:44 -0000 Mark Linimon writes: > Author: linimon > Date: Sun Oct 28 08:58:00 2018 > New Revision: 483245 > URL: https://svnweb.freebsd.org/changeset/ports/483245 > > Log: > Fix build with tier-2 arches. > > PR: 231448 > Submitted by: Piotr Kubaj > Approved by: maintainer > > Modified: > head/biology/stacks/Makefile > > Modified: head/biology/stacks/Makefile > ============================================================================== > --- head/biology/stacks/Makefile Sun Oct 28 08:56:24 2018 (r483244) > +++ head/biology/stacks/Makefile Sun Oct 28 08:58:00 2018 (r483245) > @@ -18,4 +18,10 @@ GNU_CONFIGURE= yes > > LDFLAGS+= -lpthread > > -.include > +.include > + > +.if ${ARCH} != amd64 && ${ARCH} != i386 > +USE_GCC= yes > +.endif > + > +.include Why not USES=compiler:gcc-c++11-lib ?