pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/editors/emacs26
Module Name: pkgsrc
Committed By: chuck
Date: Mon Jun 3 01:21:49 UTC 2019
Modified Files:
pkgsrc/editors/emacs26: options.mk
Log Message:
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)
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 pkgsrc/editors/emacs26/options.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/editors/emacs26/options.mk
diff -u pkgsrc/editors/emacs26/options.mk:1.5 pkgsrc/editors/emacs26/options.mk:1.6
--- pkgsrc/editors/emacs26/options.mk:1.5 Sun Apr 14 07:03:20 2019
+++ pkgsrc/editors/emacs26/options.mk Mon Jun 3 01:21:49 2019
@@ -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)
Home |
Main Index |
Thread Index |
Old Index