weston's configure.ac uses PKG_CHECK_MODULES, so it needs to depend on host-pkgconf. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Reviewed-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
33 lines
876 B
Makefile
33 lines
876 B
Makefile
################################################################################
|
|
#
|
|
# weston
|
|
#
|
|
################################################################################
|
|
|
|
WESTON_VERSION = 1.1.0
|
|
WESTON_SITE = http://wayland.freedesktop.org/releases/
|
|
WESTON_SOURCE = weston-$(WESTON_VERSION).tar.xz
|
|
WESTON_LICENSE = MIT
|
|
WESTON_LICENSE_FILES = COPYING
|
|
|
|
WESTON_DEPENDENCIES = host-pkgconf wayland libxkbcommon pixman libpng \
|
|
jpeg mtdev udev cairo
|
|
WESTON_CONF_OPT = \
|
|
--disable-egl \
|
|
--disable-xwayland \
|
|
--disable-x11-compositor \
|
|
--disable-drm-compositor \
|
|
--disable-wayland-compositor \
|
|
--disable-headless-compositor \
|
|
--disable-rpi-compositor \
|
|
--disable-weston-launch \
|
|
--disable-libunwind
|
|
|
|
ifeq ($(BR2_PACKAGE_WESTON_FBDEV),y)
|
|
WESTON_CONF_OPT += --enable-fbdev-compositor
|
|
else
|
|
WESTON_CONF_OPT += --disable-fbdev-compositor
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|