Fix vim dependencies

vim is currently builded with the dependencies for libcanberra and libacl. But these dependencies doesn't show up in the bundles. So in order to fix it, I just changed the build to not include these dependencies. Furthermore vim needs libncursesw.so.6 in order to start. So I just changed the version of the ncurses build from 5 to 6.
This commit is contained in:
Maximilian Brune 2020-02-29 21:42:31 +01:00
parent 1b9491181b
commit 2f3f6e9939
2 changed files with 4 additions and 2 deletions

View File

@ -31,7 +31,7 @@ CFLAGS="$CFLAGS" ./configure \
--without-normal \
--without-debug \
--without-cxx-binding \
--with-abi-version=5 \
--with-abi-version=6 \
--enable-widec \
--enable-pc-files \
--with-shared \

View File

@ -29,7 +29,9 @@ CFLAGS="$CFLAGS" ./configure \
--with-tlib=ncurses \
--disable-xsmp \
--disable-gpm \
--disable-selinux
--disable-selinux \
--disable-canberra \
--disable-acl
export CONF_OPT_GUI='--enable-gui=no'
export CONF_OPT_PERL='--enable-perlinterp'