comparison src/configure.ac @ 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 12f4408c7f69
children 351cf7c67bbe
comparison
equal deleted inserted replaced
12713:a730e6fb8e5c 12714:baf88919c791
2033 fi 2033 fi
2034 2034
2035 AC_MSG_CHECKING(--enable-terminal argument) 2035 AC_MSG_CHECKING(--enable-terminal argument)
2036 AC_ARG_ENABLE(terminal, 2036 AC_ARG_ENABLE(terminal,
2037 [ --enable-terminal Enable terminal emulation support.], 2037 [ --enable-terminal Enable terminal emulation support.],
2038 [enable_terminal="yes"], [enable_terminal="auto"]) 2038 , [enable_terminal="auto"])
2039 if test "$enable_terminal" = "yes" || test "$enable_terminal" = "auto" -a "x$features" = "xhuge" ; then 2039 if test "$enable_terminal" = "yes" || test "$enable_terminal" = "auto" -a "x$features" = "xhuge" ; then
2040 if test "x$features" = "xtiny" -o "x$features" = "xsmall"; then 2040 if test "x$features" = "xtiny" -o "x$features" = "xsmall"; then
2041 AC_MSG_RESULT([cannot use terminal emulator with tiny or small features]) 2041 AC_MSG_RESULT([cannot use terminal emulator with tiny or small features])
2042 enable_terminal="no" 2042 enable_terminal="no"
2043 else 2043 else