diff src/Makefile @ 12714:baf88919c791 v8.0.1235

patch 8.0.1235: cannot disable the terminal feature in a huge build commit https://github.com/vim/vim/commit/ef83956e1e67736b4c6b886d897b74f022622a74 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Oct 28 20:28:23 2017 +0200 patch 8.0.1235: cannot disable the terminal feature in a huge build Problem: Cannot disable the terminal feature in a huge build. (lindhobe) Solution: Adjust the autoconf check. (Kazunobu Kuriyama, closes https://github.com/vim/vim/issues/2242)
author Christian Brabandt <cb@256bit.org>
date Sat, 28 Oct 2017 20:30:05 +0200
parents aa658b33f25a
children f8f505ffc0a6
line wrap: on
line diff
--- a/src/Makefile
+++ b/src/Makefile
@@ -340,7 +340,7 @@ CClink = $(CC)
 # When both GTK+ 2 and GTK+ 3 are possible then GTK+ 2 will be selected.
 # To use GTK+ 3 instead use --enable-gui=gtk3 (see below).
 #CONF_OPT_GUI = --disable-gtk2-check
-#CONF_OPT_GUI = --enable-gnome2-check
+#CONF_OPT_GUI = --enable-gnome-check
 #CONF_OPT_GUI = --disable-gtk3-check
 #CONF_OPT_GUI = --disable-motif-check
 #CONF_OPT_GUI = --disable-athena-check
@@ -483,9 +483,12 @@ CClink = $(CC)
 #CONF_OPT_CHANNEL = --disable-channel
 
 # TERMINAL - Terminal emulator support, :terminal command.  Requires the
-# channel feature.
-# Uncomment this when you want terminal emulator support.
+# channel feature. The default is enable for when using "huge" features.
+# Uncomment the first line when you want terminal emulator support for
+# not-huge builds.  Uncomment the second line when you don't want terminal
+# emulator support in the huge build.
 #CONF_OPT_TERMINAL = --enable-terminal
+#CONF_OPT_TERMINAL = --disable-terminal
 
 # MULTIBYTE - To edit multi-byte characters.
 # Uncomment this when you want to edit a multibyte language.