From 39190402e4dfbb41b61b34c0afd80d13a631b2d3 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 17 Nov 2019 21:02:28 +0100 Subject: [PATCH] Ports: Upgrade the vim port to build with more features :^) Previously we were only able to build with --with-features=small. Thanks to all the compatibility work done in the kernel and LibC over the last couple of months, we can now build --with-features=normal. It's not the biggest deal in the world, but it's pretty nice to see this kind of progress! --- Ports/vim/package.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ports/vim/package.sh b/Ports/vim/package.sh index 6843e00047..45b9c2d8d0 100755 --- a/Ports/vim/package.sh +++ b/Ports/vim/package.sh @@ -5,7 +5,7 @@ workdir=vim-master useconfigure="true" curlopts="-L" files="https://github.com/vim/vim/archive/master.tar.gz vim-git.tar.gz" -configopts="--with-tlib=ncurses --with-features=small" +configopts="--with-tlib=ncurses --with-features=normal" depends="ncurses" export vim_cv_getcwd_broken=no