Received: by mail.netbsd.org (Postfix, from userid 605) id 2735584D8D; Sat, 28 Mar 2020 18:04:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id A636A84D58 for ; Sat, 28 Mar 2020 18:04:43 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id knR42qXCgRVC for ; Sat, 28 Mar 2020 18:04:43 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 0947A84CDF for ; Sat, 28 Mar 2020 18:04:43 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id F1580FB27; Sat, 28 Mar 2020 18:04:42 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1585418682115440" MIME-Version: 1.0 Date: Sat, 28 Mar 2020 18:04:42 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/x11/qt5-qtbase To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20200328180442.F1580FB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1585418682115440 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sat Mar 28 18:04:42 UTC 2020 Modified Files: pkgsrc/x11/qt5-qtbase: Makefile.common Log Message: qt5-qtbase: Correct GCC requirement in line with Qt docs To generate a diff of this commit: cvs rdiff -u -r1.41 -r1.42 pkgsrc/x11/qt5-qtbase/Makefile.common Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1585418682115440 Content-Disposition: inline Content-Length: 851 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/qt5-qtbase/Makefile.common diff -u pkgsrc/x11/qt5-qtbase/Makefile.common:1.41 pkgsrc/x11/qt5-qtbase/Makefile.common:1.42 --- pkgsrc/x11/qt5-qtbase/Makefile.common:1.41 Thu Mar 26 14:11:29 2020 +++ pkgsrc/x11/qt5-qtbase/Makefile.common Sat Mar 28 18:04:42 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.41 2020/03/26 14:11:29 nia Exp $ +# $NetBSD: Makefile.common,v 1.42 2020/03/28 18:04:42 nia Exp $ # used by x11/qt5-mysql/Makefile # used by x11/qt5-odbc/Makefile # used by x11/qt5-psql/Makefile @@ -38,8 +38,8 @@ BUILDLINK_TRANSFORM+= opt:-ldl:${BUILDLI USE_LANGUAGES= c gnu++11 USE_TOOLS+= gmake perl:build pkg-config -# C++11 -GCC_REQD+= 4.7 +# https://doc.qt.io/qt-5/supported-platforms.html +GCC_REQD+= 4.8 # Avoid failures to due 'register' usage in X11 headers. CFLAGS+= -Wno-register --_----------=_1585418682115440--