diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-11-30 13:34:23 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-11-30 13:34:23 +0100 |
commit | 0b105416066c95ade3604ec2139d8367d3c6e74e (patch) | |
tree | 00c20ce83fa5316d76e6df05b5755e3cbe5f156e /src/auto | |
parent | 76440e2efe9e3582e9943d01183ec8b2f3e4eb4b (diff) | |
download | vim-git-0b105416066c95ade3604ec2139d8367d3c6e74e.tar.gz |
updated for version 7.4.538v7.4.538
Problem: Tests fail with small features plus Python.
Solution: Disallow weird combination of options. Do not set "fdm" when
folding is disabled.
Diffstat (limited to 'src/auto')
-rwxr-xr-x | src/auto/configure | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/auto/configure b/src/auto/configure index f5195b246..ddc5c1e03 100755 --- a/src/auto/configure +++ b/src/auto/configure @@ -5728,6 +5728,10 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_pythoninterp" >&5 $as_echo "$enable_pythoninterp" >&6; } if test "$enable_pythoninterp" = "yes" -o "$enable_pythoninterp" = "dynamic"; then + if test "x$features" = "xtiny" -o "x$features" = "xsmall"; then + as_fn_error $? "cannot use Python with tiny or small features" "$LINENO" 5 + fi + for ac_prog in python2 python do # Extract the first word of "$ac_prog", so it can be a program name with args. @@ -6044,6 +6048,10 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_python3interp" >&5 $as_echo "$enable_python3interp" >&6; } if test "$enable_python3interp" = "yes" -o "$enable_python3interp" = "dynamic"; then + if test "x$features" = "xtiny" -o "x$features" = "xsmall"; then + as_fn_error $? "cannot use Python with tiny or small features" "$LINENO" 5 + fi + for ac_prog in python3 python do # Extract the first word of "$ac_prog", so it can be a program name with args. @@ -6929,6 +6937,10 @@ fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_rubyinterp" >&5 $as_echo "$enable_rubyinterp" >&6; } if test "$enable_rubyinterp" = "yes" -o "$enable_rubyinterp" = "dynamic"; then + if test "x$features" = "xtiny" -o "x$features" = "xsmall"; then + as_fn_error $? "cannot use Ruby with tiny or small features" "$LINENO" 5 + fi + { $as_echo "$as_me:${as_lineno-$LINENO}: checking --with-ruby-command argument" >&5 $as_echo_n "checking --with-ruby-command argument... " >&6; } |