Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 48D1F84E83 for ; Mon, 11 Dec 2023 01:03:56 +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 aQMFLH4lnK2h for ; Mon, 11 Dec 2023 01:03:55 +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 97DB484D44 for ; Mon, 11 Dec 2023 01:03:55 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 91257FA42; Mon, 11 Dec 2023 01:03:55 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1702256635155560" MIME-Version: 1.0 Date: Mon, 11 Dec 2023 01:03:55 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/editors/emacs21 To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20231211010355.91257FA42@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1702256635155560 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Mon Dec 11 01:03:55 UTC 2023 Modified Files: pkgsrc/editors/emacs21: Makefile.common Log Message: editors/emacs21: Set BROKEN_ON for Darwin Trying to build on macOS gets a "has not been ported" error. To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 pkgsrc/editors/emacs21/Makefile.common Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1702256635155560 Content-Disposition: inline Content-Length: 850 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/editors/emacs21/Makefile.common diff -u pkgsrc/editors/emacs21/Makefile.common:1.21 pkgsrc/editors/emacs21/Makefile.common:1.22 --- pkgsrc/editors/emacs21/Makefile.common:1.21 Wed Oct 6 15:33:03 2021 +++ pkgsrc/editors/emacs21/Makefile.common Mon Dec 11 01:03:55 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.21 2021/10/06 15:33:03 nia Exp $ +# $NetBSD: Makefile.common,v 1.22 2023/12/11 01:03:55 gdt Exp $ # # used by editors/emacs21/Makefile # used by editors/emacs21-nox11/Makefile @@ -11,6 +11,9 @@ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= https://www.gnu.org/software/emacs/emacs.html COMMENT= GNU editing macros (editor) +# configure: error: Emacs hasn't been ported to `x86_64-apple-darwin17' systems. +BROKEN_ON_PLATFORM= Darwin-*-* + CONFLICTS= mule-[0-9]* USE_TOOLS+= gmake perl:run --_----------=_1702256635155560--