mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-29 14:16:31 +00:00
package/vim: add optional support for acl
When acl was compiled before, vim will use it as optional dependency: $ output/host/usr/bin/x86_64-linux-readelf -a output/target/usr/bin/vim | grep NEEDED | sort 0x0000000000000001 (NEEDED) Shared library: [libacl.so.1] [...] Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
ab0f1bf29b
commit
46b084368e
@ -27,6 +27,13 @@ VIM_CONF_OPTS = --with-tlib=ncurses --enable-gui=no --without-x
|
|||||||
VIM_LICENSE = Charityware
|
VIM_LICENSE = Charityware
|
||||||
VIM_LICENSE_FILES = README.txt
|
VIM_LICENSE_FILES = README.txt
|
||||||
|
|
||||||
|
ifeq ($(BR2_PACKAGE_ACL),y)
|
||||||
|
VIM_CONF_OPTS += --enable-acl
|
||||||
|
VIM_DEPENDENCIES += acl
|
||||||
|
else
|
||||||
|
VIM_CONF_OPTS += --disable-acl
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq ($(BR2_PACKAGE_GPM),y)
|
ifeq ($(BR2_PACKAGE_GPM),y)
|
||||||
VIM_CONF_OPTS += --enable-gpm
|
VIM_CONF_OPTS += --enable-gpm
|
||||||
VIM_DEPENDENCIES += gpm
|
VIM_DEPENDENCIES += gpm
|
||||||
|
Loading…
x
Reference in New Issue
Block a user