Received: by mail.netbsd.org (Postfix, from userid 605) id C2ACB84D94; Thu, 31 May 2018 01:44:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2036184D70 for ; Thu, 31 May 2018 01:44:10 +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 gHzWNdR2wFby for ; Thu, 31 May 2018 01:44:09 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 4171E84CE1 for ; Thu, 31 May 2018 01:44:09 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 33AF3FBEB; Thu, 31 May 2018 01:44:09 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1527731049264310" MIME-Version: 1.0 Date: Thu, 31 May 2018 01:44:09 +0000 From: "Greg Troxel" Subject: CVS commit: pkgsrc/editors/emacs25-nox11 To: pkgsrc-changes@NetBSD.org Reply-To: gdt@netbsd.org X-Mailer: log_accum Message-Id: <20180531014409.33AF3FBEB@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. --_----------=_1527731049264310 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: gdt Date: Thu May 31 01:44:09 UTC 2018 Modified Files: pkgsrc/editors/emacs25-nox11: Makefile Log Message: emacs25-nox11: fix build on MacOS On MacOS, the build finds the Cocoa framework and tries to build nextstep, which results in a wildly differing PLIST. Pass "--without-ns" to force disable this. No PKGREVISION, as any build which found ns previously failed. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 pkgsrc/editors/emacs25-nox11/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1527731049264310 Content-Disposition: inline Content-Length: 772 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/editors/emacs25-nox11/Makefile diff -u pkgsrc/editors/emacs25-nox11/Makefile:1.5 pkgsrc/editors/emacs25-nox11/Makefile:1.6 --- pkgsrc/editors/emacs25-nox11/Makefile:1.5 Tue Sep 12 03:19:02 2017 +++ pkgsrc/editors/emacs25-nox11/Makefile Thu May 31 01:44:09 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2017/09/12 03:19:02 ryoon Exp $ +# $NetBSD: Makefile,v 1.6 2018/05/31 01:44:09 gdt Exp $ PKGNAME= ${DISTNAME:S/emacs/emacs25/:S/-/-nox11-/} @@ -14,5 +14,6 @@ CONFIGURE_ARGS+= --without-dbus --withou CONFIGURE_ARGS+= --without-rsvg --without-x --without-xft CONFIGURE_ARGS+= --without-gif --without-jpeg --without-png CONFIGURE_ARGS+= --without-tiff --without-xpm +CONFIGURE_ARGS+= --without-ns .include "../../mk/bsd.pkg.mk" --_----------=_1527731049264310--