Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9CA6584F03 for ; Thu, 10 Aug 2023 15:16:54 +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 iRgPvlnyA3uM for ; Thu, 10 Aug 2023 15:16:54 +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 EE5C384EAE for ; Thu, 10 Aug 2023 15:16:53 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id E7D41FBDB; Thu, 10 Aug 2023 15:16:53 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_169168061377240" MIME-Version: 1.0 Date: Thu, 10 Aug 2023 15:16:53 +0000 From: "Tobias Nygren" Subject: CVS commit: pkgsrc/lang/qt6-qtdeclarative To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: tnn@netbsd.org X-Mailer: log_accum Message-Id: <20230810151653.E7D41FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_169168061377240 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tnn Date: Thu Aug 10 15:16:53 UTC 2023 Modified Files: pkgsrc/lang/qt6-qtdeclarative: Makefile Log Message: qt6-qtdeclarative: bring PLIST.jit conditional closer to reality To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/lang/qt6-qtdeclarative/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_169168061377240 Content-Disposition: inline Content-Length: 1022 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/qt6-qtdeclarative/Makefile diff -u pkgsrc/lang/qt6-qtdeclarative/Makefile:1.6 pkgsrc/lang/qt6-qtdeclarative/Makefile:1.7 --- pkgsrc/lang/qt6-qtdeclarative/Makefile:1.6 Thu Aug 3 20:01:30 2023 +++ pkgsrc/lang/qt6-qtdeclarative/Makefile Thu Aug 10 15:16:53 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2023/08/03 20:01:30 adam Exp $ +# $NetBSD: Makefile,v 1.7 2023/08/10 15:16:53 tnn Exp $ DISTNAME= qtdeclarative-everywhere-src-${QTVERSION} PKGNAME= qt6-qtdeclarative-${QTVERSION} @@ -34,7 +34,13 @@ PKGCONFIG_OVERRIDE+= lib/pkgconfig/Qt6Qu PLIST_VARS+= jit -.if empty(MACHINE_PLATFORM:MDarwin-*-aarch64) +# jit-enabled platforms per src/qml/configure.cmake. +# NetBSD-*-aarch64 could be added, but I/D cache flushing in ARM64Assembler.h is missing. +.if \ + !empty(MACHINE_PLATFORM:M*-*-i386) || \ + !empty(MACHINE_PLATFORM:M*-*-x86_64) || \ + !empty(MACHINE_PLATFORM:MLinux-*-*arm*) || \ + !empty(MACHINE_PLATFORM:MLinux-*-aarch64*) PLIST.jit= yes .endif --_----------=_169168061377240--