From owner-svn-ports-all@freebsd.org Fri Mar 30 14:10:20 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 0D962F70244; Fri, 30 Mar 2018 14:10:20 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from ainaz.pair.com (ainaz.pair.com [209.68.2.66]) (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 AC21569A6E; Fri, 30 Mar 2018 14:10:19 +0000 (UTC) (envelope-from gerald@pfeifer.com) Received: from ainaz.pair.com (localhost [127.0.0.1]) by ainaz.pair.com (Postfix) with ESMTP id 97A603F447; Fri, 30 Mar 2018 10:10:12 -0400 (EDT) Received: from anthias (vie-188-118-240-174.dsl.sil.at [188.118.240.174]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ainaz.pair.com (Postfix) with ESMTPSA id 769383F426; Fri, 30 Mar 2018 10:10:11 -0400 (EDT) Date: Fri, 30 Mar 2018 16:10:09 +0200 (CEST) From: Gerald Pfeifer To: Steve Wills , Ryo ONODERA cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r465815 - in head/emulators/mame: . files In-Reply-To: <201803281518.w2SFIsl2021843@repo.freebsd.org> Message-ID: References: <201803281518.w2SFIsl2021843@repo.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 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: Fri, 30 Mar 2018 14:10:20 -0000 On Wed, 28 Mar 2018, Steve Wills wrote: > Log: > emulators/mame: update to 0.195 This brougth a lot more changes than just a version update... > Modified: head/emulators/mame/Makefile > ============================================================================== > +LICENSE= GPLv2 ...such as setting the LICENSE or moving from Qt4 to Qt5... > +.if ${OSVERSION} < 1100055 > +USE_GCC= 6 > +.endif ...and adding this hack. Does this means GCC 7 does not work, so it's really GCC 6 that needs to be requested, not USE_GCC=yes? Gerald