Authentication-Results: name.execsw.org; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=1DeJ7T6S; dkim=pass (1024-bit key) header.d=netbsd.org header.i=@netbsd.org header.b=S3s3sLtb Received: by mail.netbsd.org (Postfix, from userid 605) id 0DC6D84F03; Wed, 15 May 2024 07:35:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715758513; bh=FQ0GVMjglsSn9hvYckqalw+Gp8bSnTqEiGNca7p24cM=; h=Date:From:Subject:To:Reply-To:List-Id:List-Unsubscribe; b=1DeJ7T6SAp17uqL4vhepqbn1gNU+AunhV7At1eXWWKswlpk/b+LoOq5UjQvryFjwN 9VtzB0KzxAWwALKnLd5gpSaCBMGBMq+P97eKIVV2IlINDA4P8q815GCLQlFcjWijlT x/SAakRE7aQj5sG5RRBVS5Nm6YQCZqdpaDOMpTHE= Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id F318C84EE4 for ; Wed, 15 May 2024 07:35:11 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Authentication-Results: mail.netbsd.org (amavisd-new); dkim=pass (1024-bit key) header.d=netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id Ss-1E8Hp7B1c for ; Wed, 15 May 2024 07:35:11 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 50AF884CEB for ; Wed, 15 May 2024 07:35:11 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netbsd.org; s=20240131; t=1715758511; bh=FQ0GVMjglsSn9hvYckqalw+Gp8bSnTqEiGNca7p24cM=; h=Date:From:Subject:To:Reply-To; b=S3s3sLtb6ubo8zm31dQr4reym7YRlDX7+FPDNlaa1XMaApTcIfqiG+Akceswad5XK l8SQlTa+LfyCNpVp264hF70Ip8vOelBTNRcya24gblVWXFB+OARWPNS+oA5BIoeZNn EDnTF8Abhb/w2dyQ0gULOXYR41OP4ZYeupRGG2Ok= Received: by cvs.NetBSD.org (Postfix, from userid 500) id 48E12FA2C; Wed, 15 May 2024 07:35:11 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1715758511247710" MIME-Version: 1.0 Date: Wed, 15 May 2024 07:35:11 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/editors/emacs29 To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20240515073511.48E12FA2C@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1715758511247710 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Wed May 15 07:35:11 UTC 2024 Modified Files: pkgsrc/editors/emacs29: options.mk Log Message: emacs29: Disable libgccjit on all Darwin. It doesn't get past configure with the current gcc13-libjit. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/editors/emacs29/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1715758511247710 Content-Disposition: inline Content-Length: 862 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/editors/emacs29/options.mk diff -u pkgsrc/editors/emacs29/options.mk:1.6 pkgsrc/editors/emacs29/options.mk:1.7 --- pkgsrc/editors/emacs29/options.mk:1.6 Tue Apr 30 14:28:51 2024 +++ pkgsrc/editors/emacs29/options.mk Wed May 15 07:35:11 2024 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.6 2024/04/30 14:28:51 jperkin Exp $ +# $NetBSD: options.mk,v 1.7 2024/05/15 07:35:11 jperkin Exp $ ### Set options PKG_OPTIONS_VAR= PKG_OPTIONS.emacs @@ -23,7 +23,7 @@ PKG_OPTIONS_GROUP.toolkit= gtk gtk2 gtk # xaw3d is omitted because it is only valid with xaw PKG_SUGGESTED_OPTIONS= dbus gnutls gtk3 jansson libotf libwebp tree-sitter xml x11 -.if !${MACHINE_PLATFORM:MDarwin-*-aarch64} && !${MACHINE_PLATFORM:MSunOS-*} +.if !${MACHINE_PLATFORM:MDarwin-*} && !${MACHINE_PLATFORM:MSunOS-*} PKG_SUGGESTED_OPTIONS+= libgccjit .endif --_----------=_1715758511247710--