Merge pull request #10431 from micmac1/vim-host

vim/host: fix build failures
This commit is contained in:
Rosen Penev 2019-11-02 10:15:15 -07:00 committed by GitHub
commit 4854659b79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 1 deletions

View File

@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=vim
PKG_VERSION:=8.1
PKG_RELEASE:=4
PKG_RELEASE:=5
VIMVER:=81
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
@ -21,6 +21,8 @@ PKG_CPE_ID:=cpe:/a:vim:vim
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)$(VIMVER)
PKG_BUILD_PARALLEL:=1
HOST_BUILD_DEPENDS:=libiconv/host
HOST_BUILD_DIR:=$(BUILD_DIR_HOST)/$(PKG_NAME)$(VIMVER)
HOST_BUILD_PARALLEL:=1
@ -110,6 +112,15 @@ define Package/xxd/description
a hex dump back to its original binary form.
endef
HOST_CONFIGURE_ARGS += \
--disable-acl \
--disable-gpm \
--disable-nls \
--disable-selinux \
--enable-gui=no \
--with-features=normal \
--without-x
CONFIGURE_ARGS += \
--disable-gui \
--disable-gtktest \