comparison src/auto/configure @ 12341:4f1b89fb9f58 v8.0.1050

patch 8.0.1050: terminal window feature not included by default commit https://github.com/vim/vim/commit/595a40226ea1285689b622042534fd8442402db3 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 3 19:15:57 2017 +0200 patch 8.0.1050: terminal window feature not included by default Problem: Terminal window feature not included by default. Solution: Include the terminal feature for the "huge" build.
author Christian Brabandt <cb@256bit.org>
date Sun, 03 Sep 2017 19:30:05 +0200
parents c141c7d8606c
children 20dd08d26680
comparison
equal deleted inserted replaced
12340:6b40ac998f8b 12341:4f1b89fb9f58
7471 { $as_echo "$as_me:${as_lineno-$LINENO}: checking --enable-terminal argument" >&5 7471 { $as_echo "$as_me:${as_lineno-$LINENO}: checking --enable-terminal argument" >&5
7472 $as_echo_n "checking --enable-terminal argument... " >&6; } 7472 $as_echo_n "checking --enable-terminal argument... " >&6; }
7473 # Check whether --enable-terminal was given. 7473 # Check whether --enable-terminal was given.
7474 if test "${enable_terminal+set}" = set; then : 7474 if test "${enable_terminal+set}" = set; then :
7475 enableval=$enable_terminal; enable_terminal="yes" 7475 enableval=$enable_terminal; enable_terminal="yes"
7476 fi 7476 else
7477 7477 enable_terminal="auto"
7478 if test "$enable_terminal" = "yes"; then 7478 fi
7479
7480 if test "$enable_terminal" = "yes" || test "$enable_terminal" = "auto" -a "x$features" = "xhuge" ; then
7479 if test "x$features" = "xtiny" -o "x$features" = "xsmall"; then 7481 if test "x$features" = "xtiny" -o "x$features" = "xsmall"; then
7480 { $as_echo "$as_me:${as_lineno-$LINENO}: result: cannot use terminal emulator with tiny or small features" >&5 7482 { $as_echo "$as_me:${as_lineno-$LINENO}: result: cannot use terminal emulator with tiny or small features" >&5
7481 $as_echo "cannot use terminal emulator with tiny or small features" >&6; } 7483 $as_echo "cannot use terminal emulator with tiny or small features" >&6; }
7482 enable_terminal="no" 7484 enable_terminal="no"
7483 else 7485 else
7484 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 7486 if test "$enable_terminal" = "auto"; then
7487 enable_terminal="yes"
7488 { $as_echo "$as_me:${as_lineno-$LINENO}: result: defaulting to yes" >&5
7489 $as_echo "defaulting to yes" >&6; }
7490 else
7491 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
7485 $as_echo "yes" >&6; } 7492 $as_echo "yes" >&6; }
7486 fi 7493 fi
7487 else 7494 fi
7488 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 7495 else
7496 if test "$enable_terminal" = "auto"; then
7497 enable_terminal="no"
7498 { $as_echo "$as_me:${as_lineno-$LINENO}: result: defaulting to no" >&5
7499 $as_echo "defaulting to no" >&6; }
7500 else
7501 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
7489 $as_echo "no" >&6; } 7502 $as_echo "no" >&6; }
7503 fi
7490 fi 7504 fi
7491 if test "$enable_terminal" = "yes"; then 7505 if test "$enable_terminal" = "yes"; then
7492 $as_echo "#define FEAT_TERMINAL 1" >>confdefs.h 7506 $as_echo "#define FEAT_TERMINAL 1" >>confdefs.h
7493 7507
7494 TERM_SRC="libvterm/src/encoding.c libvterm/src/keyboard.c libvterm/src/mouse.c libvterm/src/parser.c libvterm/src/pen.c libvterm/src/screen.c libvterm/src/state.c libvterm/src/unicode.c libvterm/src/vterm.c" 7508 TERM_SRC="libvterm/src/encoding.c libvterm/src/keyboard.c libvterm/src/mouse.c libvterm/src/parser.c libvterm/src/pen.c libvterm/src/screen.c libvterm/src/state.c libvterm/src/unicode.c libvterm/src/vterm.c"