diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-01-20 22:11:59 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-01-20 22:11:59 +0100 |
commit | 23c4f7183cca0ff8d2c5c2ef9a5c62f6307e07ea (patch) | |
tree | ce8f77eb2e5246036ef53ce9d86bc709a4ee65ea /src/configure.in | |
parent | 17576a1e33d71b5602cee86bf220a806c8412605 (diff) | |
download | vim-git-23c4f7183cca0ff8d2c5c2ef9a5c62f6307e07ea.tar.gz |
patch 7.4.1145v7.4.1145
Problem: Default features are conservative.
Solution: Make the default feature set for most of todays systems "huge".
Diffstat (limited to 'src/configure.in')
-rw-r--r-- | src/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configure.in b/src/configure.in index adb30c429..4bb49a70a 100644 --- a/src/configure.in +++ b/src/configure.in @@ -436,7 +436,7 @@ dnl Check user requested features. AC_MSG_CHECKING(--with-features argument) AC_ARG_WITH(features, [ --with-features=TYPE tiny, small, normal, big or huge (default: normal)], features="$withval"; AC_MSG_RESULT($features), - features="normal"; AC_MSG_RESULT(Defaulting to normal)) + features="huge"; AC_MSG_RESULT(Defaulting to huge)) dovimdiff="" dogvimdiff="" |