comparison src/configure.ac @ 11692:c141c7d8606c v8.0.0729

patch 8.0.0729: the help for the terminal configure option is wrong commit https://github.com/vim/vim/commit/8008b6318dbd68b2c2c8cf08280768489a8f0114 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Jul 18 21:33:20 2017 +0200 patch 8.0.0729: the help for the terminal configure option is wrong Problem: The help for the terminal configure option is wrong. Solution: Change "Disable" to "Enable". (E Kawashima, closes https://github.com/vim/vim/issues/1849) Improve alignment.
author Christian Brabandt <cb@256bit.org>
date Tue, 18 Jul 2017 21:45:03 +0200
parents b8299e742f41
children 4f1b89fb9f58
comparison
equal deleted inserted replaced
11691:c1c5ff1ece65 11692:c141c7d8606c
490 fi 490 fi
491 491
492 dnl Check for Lua feature. 492 dnl Check for Lua feature.
493 AC_MSG_CHECKING(--enable-luainterp argument) 493 AC_MSG_CHECKING(--enable-luainterp argument)
494 AC_ARG_ENABLE(luainterp, 494 AC_ARG_ENABLE(luainterp,
495 [ --enable-luainterp[=OPTS] Include Lua interpreter. [default=no] [OPTS=no/yes/dynamic]], , 495 [ --enable-luainterp[=OPTS] Include Lua interpreter. [default=no] [OPTS=no/yes/dynamic]], ,
496 [enable_luainterp="no"]) 496 [enable_luainterp="no"])
497 AC_MSG_RESULT($enable_luainterp) 497 AC_MSG_RESULT($enable_luainterp)
498 498
499 if test "$enable_luainterp" = "yes" -o "$enable_luainterp" = "dynamic"; then 499 if test "$enable_luainterp" = "yes" -o "$enable_luainterp" = "dynamic"; then
500 if test "x$features" = "xtiny" -o "x$features" = "xsmall"; then 500 if test "x$features" = "xtiny" -o "x$features" = "xsmall"; then
688 688
689 689
690 dnl Check for MzScheme feature. 690 dnl Check for MzScheme feature.
691 AC_MSG_CHECKING(--enable-mzschemeinterp argument) 691 AC_MSG_CHECKING(--enable-mzschemeinterp argument)
692 AC_ARG_ENABLE(mzschemeinterp, 692 AC_ARG_ENABLE(mzschemeinterp,
693 [ --enable-mzschemeinterp Include MzScheme interpreter.], , 693 [ --enable-mzschemeinterp Include MzScheme interpreter.], ,
694 [enable_mzschemeinterp="no"]) 694 [enable_mzschemeinterp="no"])
695 AC_MSG_RESULT($enable_mzschemeinterp) 695 AC_MSG_RESULT($enable_mzschemeinterp)
696 696
697 if test "$enable_mzschemeinterp" = "yes"; then 697 if test "$enable_mzschemeinterp" = "yes"; then
698 dnl -- find the mzscheme executable 698 dnl -- find the mzscheme executable
1330 AC_SUBST(PYTHON_OBJ) 1330 AC_SUBST(PYTHON_OBJ)
1331 1331
1332 1332
1333 AC_MSG_CHECKING(--enable-python3interp argument) 1333 AC_MSG_CHECKING(--enable-python3interp argument)
1334 AC_ARG_ENABLE(python3interp, 1334 AC_ARG_ENABLE(python3interp,
1335 [ --enable-python3interp[=OPTS] Include Python3 interpreter. [default=no] [OPTS=no/yes/dynamic]], , 1335 [ --enable-python3interp[=OPTS] Include Python3 interpreter. [default=no] [OPTS=no/yes/dynamic]], ,
1336 [enable_python3interp="no"]) 1336 [enable_python3interp="no"])
1337 AC_MSG_RESULT($enable_python3interp) 1337 AC_MSG_RESULT($enable_python3interp)
1338 if test "$enable_python3interp" = "yes" -o "$enable_python3interp" = "dynamic"; then 1338 if test "$enable_python3interp" = "yes" -o "$enable_python3interp" = "dynamic"; then
1339 if test "x$features" = "xtiny" -o "x$features" = "xsmall"; then 1339 if test "x$features" = "xtiny" -o "x$features" = "xsmall"; then
1340 AC_MSG_ERROR([cannot use Python with tiny or small features]) 1340 AC_MSG_ERROR([cannot use Python with tiny or small features])
1961 AC_MSG_RESULT(yes) 1961 AC_MSG_RESULT(yes)
1962 fi 1962 fi
1963 1963
1964 AC_MSG_CHECKING(--disable-channel argument) 1964 AC_MSG_CHECKING(--disable-channel argument)
1965 AC_ARG_ENABLE(channel, 1965 AC_ARG_ENABLE(channel,
1966 [ --disable-channel Disable process communication support.], 1966 [ --disable-channel Disable process communication support.],
1967 , [enable_channel="yes"]) 1967 , [enable_channel="yes"])
1968 if test "$enable_channel" = "yes"; then 1968 if test "$enable_channel" = "yes"; then
1969 if test "x$features" = "xtiny" -o "x$features" = "xsmall"; then 1969 if test "x$features" = "xtiny" -o "x$features" = "xsmall"; then
1970 AC_MSG_RESULT([cannot use channels with tiny or small features]) 1970 AC_MSG_RESULT([cannot use channels with tiny or small features])
1971 enable_channel="no" 1971 enable_channel="no"
2028 AC_SUBST(CHANNEL_OBJ) 2028 AC_SUBST(CHANNEL_OBJ)
2029 fi 2029 fi
2030 2030
2031 AC_MSG_CHECKING(--enable-terminal argument) 2031 AC_MSG_CHECKING(--enable-terminal argument)
2032 AC_ARG_ENABLE(terminal, 2032 AC_ARG_ENABLE(terminal,
2033 [ --enable-terminal Disable terminal emulation support.], 2033 [ --enable-terminal Enable terminal emulation support.],
2034 [enable_terminal="yes"], ) 2034 [enable_terminal="yes"], )
2035 if test "$enable_terminal" = "yes"; then 2035 if test "$enable_terminal" = "yes"; then
2036 if test "x$features" = "xtiny" -o "x$features" = "xsmall"; then 2036 if test "x$features" = "xtiny" -o "x$features" = "xsmall"; then
2037 AC_MSG_RESULT([cannot use terminal emulator with tiny or small features]) 2037 AC_MSG_RESULT([cannot use terminal emulator with tiny or small features])
2038 enable_terminal="no" 2038 enable_terminal="no"
2212 2212
2213 test "x$with_x" = xno -a "x$MACOSX" != "xyes" -a "x$QNX" != "xyes" && enable_gui=no 2213 test "x$with_x" = xno -a "x$MACOSX" != "xyes" -a "x$QNX" != "xyes" && enable_gui=no
2214 2214
2215 AC_MSG_CHECKING(--enable-gui argument) 2215 AC_MSG_CHECKING(--enable-gui argument)
2216 AC_ARG_ENABLE(gui, 2216 AC_ARG_ENABLE(gui,
2217 [ --enable-gui[=OPTS] X11 GUI [default=auto] [OPTS=auto/no/gtk2/gnome2/gtk3/motif/athena/neXtaw/photon/carbon]], , enable_gui="auto") 2217 [ --enable-gui[=OPTS] X11 GUI. [default=auto] [OPTS=auto/no/gtk2/gnome2/gtk3/motif/athena/neXtaw/photon/carbon]], , enable_gui="auto")
2218 2218
2219 dnl Canonicalize the --enable-gui= argument so that it can be easily compared. 2219 dnl Canonicalize the --enable-gui= argument so that it can be easily compared.
2220 dnl Do not use character classes for portability with old tools. 2220 dnl Do not use character classes for portability with old tools.
2221 enable_gui_canon=`echo "_$enable_gui" | \ 2221 enable_gui_canon=`echo "_$enable_gui" | \
2222 sed 's/[[ _+-]]//g;y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'` 2222 sed 's/[[ _+-]]//g;y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'`
2780 dnl files, to avoid a mixup if several versions are present 2780 dnl files, to avoid a mixup if several versions are present
2781 2781
2782 if test -z "$SKIP_MOTIF"; then 2782 if test -z "$SKIP_MOTIF"; then
2783 AC_MSG_CHECKING(--with-motif-lib argument) 2783 AC_MSG_CHECKING(--with-motif-lib argument)
2784 AC_ARG_WITH(motif-lib, 2784 AC_ARG_WITH(motif-lib,
2785 [ --with-motif-lib=STRING Library for Motif ], 2785 [ --with-motif-lib=STRING Library for Motif ],
2786 [ MOTIF_LIBNAME="${withval}" ] ) 2786 [ MOTIF_LIBNAME="${withval}" ] )
2787 2787
2788 if test -n "$MOTIF_LIBNAME"; then 2788 if test -n "$MOTIF_LIBNAME"; then
2789 AC_MSG_RESULT($MOTIF_LIBNAME) 2789 AC_MSG_RESULT($MOTIF_LIBNAME)
2790 GUI_LIB_LOC= 2790 GUI_LIB_LOC=
3872 AC_MSG_RESULT(yes) 3872 AC_MSG_RESULT(yes)
3873 fi 3873 fi
3874 3874
3875 AC_MSG_CHECKING(--disable-sysmouse argument) 3875 AC_MSG_CHECKING(--disable-sysmouse argument)
3876 AC_ARG_ENABLE(sysmouse, 3876 AC_ARG_ENABLE(sysmouse,
3877 [ --disable-sysmouse Don't use sysmouse (mouse in *BSD console).], , 3877 [ --disable-sysmouse Don't use sysmouse (mouse in *BSD console).], ,
3878 [enable_sysmouse="yes"]) 3878 [enable_sysmouse="yes"])
3879 3879
3880 if test "$enable_sysmouse" = "yes"; then 3880 if test "$enable_sysmouse" = "yes"; then
3881 AC_MSG_RESULT(no) 3881 AC_MSG_RESULT(no)
3882 dnl Checking if sysmouse support can be compiled 3882 dnl Checking if sysmouse support can be compiled