summaryrefslogtreecommitdiff
path: root/editors/emacs26
diff options
context:
space:
mode:
authorchuck <chuck@pkgsrc.org>2019-06-03 01:21:49 +0000
committerchuck <chuck@pkgsrc.org>2019-06-03 01:21:49 +0000
commitb763ff11569ab5a4b967fca964363abef94b41f8 (patch)
treec19b90d2c52119a3bcc7242bd5786a333296fc06 /editors/emacs26
parent95e2737672de221f8110621575efe598c8b60627 (diff)
downloadpkgsrc-b763ff11569ab5a4b967fca964363abef94b41f8.tar.gz
add "--without-ns" to x11 configs for OSX
on OSX the configure script will select the "nextstep" window system unless you explicitly tell it not to: % bmake configure |& egrep 'PKG_OPTIONS.emacs|What window system should Emacs use' PKG_OPTIONS.emacs = x11 What window system should Emacs use? nextstep % leaving pkgsrc in a bad state where it thinks it built an x11 version, but instead emacs built a nextstep version. add "--without-ns" to the x11 config option for OSX. this should not impact other platforms. (this diff corresponds to the change i did in options.mk 1.4 for editors/emacs25)
Diffstat (limited to 'editors/emacs26')
-rw-r--r--editors/emacs26/options.mk9
1 files changed, 8 insertions, 1 deletions
diff --git a/editors/emacs26/options.mk b/editors/emacs26/options.mk
index 30105bab109..34abfca55f2 100644
--- a/editors/emacs26/options.mk
+++ b/editors/emacs26/options.mk
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.5 2019/04/14 07:03:20 wiz Exp $
+# $NetBSD: options.mk,v 1.6 2019/06/03 01:21:49 chuck Exp $
### Set options
PKG_OPTIONS_VAR= PKG_OPTIONS.emacs
@@ -62,6 +62,13 @@ CONFIGURE_ARGS+= --without-gnutls
###
.if !empty(PKG_OPTIONS:Mx11)
###
+### on OSX the configure script will select the "nextstep" window system
+### unless you explicitly tell it not to. this should not impact other
+### platforms.
+###
+CONFIGURE_ARGS+= --without-ns
+
+###
### Support SVG
###
. if !empty(PKG_OPTIONS:Msvg)