Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id EE2097A219 for ; Tue, 1 Nov 2016 20:01:58 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id A0F8C855BB; Tue, 1 Nov 2016 20:01:58 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 30EBC855B2 for ; Tue, 1 Nov 2016 20:01:58 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id Tv3nRcp7ygKb for ; Tue, 1 Nov 2016 20:01:57 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 8FEE684CE9 for ; Tue, 1 Nov 2016 20:01:57 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 8A693FBA4; Tue, 1 Nov 2016 20:01:57 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1478030517178400" MIME-Version: 1.0 Date: Tue, 1 Nov 2016 20:01:57 +0000 From: "Maya Rashish" Subject: CVS commit: pkgsrc/emulators/wine-devel To: pkgsrc-changes@NetBSD.org Reply-To: maya@netbsd.org X-Mailer: log_accum Message-Id: <20161101200157.8A693FBA4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1478030517178400 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: maya Date: Tue Nov 1 20:01:57 UTC 2016 Modified Files: pkgsrc/emulators/wine-devel: Makefile Log Message: wine-devel: require gcc 4.7 or above. according to https://wiki.winehq.org/Gcc : some program (steam) require ms_hook_prologue which is only in gcc 4.5 but gcc 4.6 broke support for it, so require 4.7. addresses PR pkg/42218 indirectly To generate a diff of this commit: cvs rdiff -u -r1.61 -r1.62 pkgsrc/emulators/wine-devel/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1478030517178400 Content-Disposition: inline Content-Length: 619 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/emulators/wine-devel/Makefile diff -u pkgsrc/emulators/wine-devel/Makefile:1.61 pkgsrc/emulators/wine-devel/Makefile:1.62 --- pkgsrc/emulators/wine-devel/Makefile:1.61 Mon Sep 19 13:04:21 2016 +++ pkgsrc/emulators/wine-devel/Makefile Tue Nov 1 20:01:57 2016 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.61 2016/09/19 13:04:21 wiz Exp $ +# $NetBSD: Makefile,v 1.62 2016/11/01 20:01:57 maya Exp $ DISTNAME= wine-1.9.18 PKGREVISION= 3 @@ -18,6 +18,7 @@ ONLY_FOR_PLATFORM+= *-*-i386 *-*-x86_64 PKG_DESTDIR_SUPPORT= user-destdir +GCC_REQD+= 4.7 USE_LANGUAGES= c USE_LIBTOOL= yes --_----------=_1478030517178400--