Received: by mail.netbsd.org (Postfix, from userid 605) id 95EBF84D84; Sun, 13 Jun 2021 06:53:02 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id CFD4484D12 for ; Sun, 13 Jun 2021 06:53:01 +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 1DoDPfBSKd35 for ; Sun, 13 Jun 2021 06:53:01 +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 2DCA484CEA for ; Sun, 13 Jun 2021 06:53:01 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1B08FFA95; Sun, 13 Jun 2021 06:53:01 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1623567181157190" MIME-Version: 1.0 Date: Sun, 13 Jun 2021 06:53:01 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/x11/qt5-qtwebkit To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20210613065301.1B08FFA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1623567181157190 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sun Jun 13 06:53:01 UTC 2021 Modified Files: pkgsrc/x11/qt5-qtwebkit: Makefile Log Message: qt5-qtwebkit: force a MIPS -march of at least MIPS32/MIPS64 To generate a diff of this commit: cvs rdiff -u -r1.89 -r1.90 pkgsrc/x11/qt5-qtwebkit/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1623567181157190 Content-Disposition: inline Content-Length: 846 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/qt5-qtwebkit/Makefile diff -u pkgsrc/x11/qt5-qtwebkit/Makefile:1.89 pkgsrc/x11/qt5-qtwebkit/Makefile:1.90 --- pkgsrc/x11/qt5-qtwebkit/Makefile:1.89 Mon May 24 19:56:05 2021 +++ pkgsrc/x11/qt5-qtwebkit/Makefile Sun Jun 13 06:53:00 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.89 2021/05/24 19:56:05 wiz Exp $ +# $NetBSD: Makefile,v 1.90 2021/06/13 06:53:00 nia Exp $ QTWKVERSION= 5.212.0-alpha4 DISTNAME= qtwebkit-${QTWKVERSION} @@ -77,6 +77,13 @@ BUILDLINK_TRANSFORM+= rpath:${WRKSRC}/li LDFLAGS+= -Wl,--no-keep-memory .endif +# JavaScriptCore requires at least MIPS32. +.if !empty(MACHINE_ARCH:Mmips64*) +CFLAGS+= -march=mips64 +.elif !empty(MACHINE_ARCH:Mmips*) +CFLAGS+= -march=mips32 +.endif + post-install: .for i in Qt5WebKit.pc Qt5WebKitWidgets.pc cd ${DESTDIR}${PREFIX}/lib/pkgconfig && \ --_----------=_1623567181157190--