Merge pull request #10431 from micmac1/vim-host
vim/host: fix build failures
This commit is contained in:
commit
4854659b79
1 changed files with 12 additions and 1 deletions
|
@ -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 \
|
||||
|
|
Loading…
Reference in a new issue