mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-04 06:10:16 +03:00
packages: rename FOO_CONF_OPT into FOO_CONF_OPTS
To be consistent with the recent change of FOO_MAKE_OPT into FOO_MAKE_OPTS, make the same change for FOO_CONF_OPT. Sed command used: find * -type f | xargs sed -i 's#_CONF_OPT\>#&S#g' Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
committed by
Thomas Petazzoni
parent
1d2574ac6f
commit
aaffd209fa
@@ -14,37 +14,37 @@ LIBVA_INSTALL_STAGING = YES
|
||||
LIBVA_DEPENDENCIES = host-pkgconf libdrm
|
||||
|
||||
# libdrm is a hard-dependency
|
||||
LIBVA_CONF_OPT = \
|
||||
LIBVA_CONF_OPTS = \
|
||||
--enable-drm \
|
||||
--disable-dummy-driver \
|
||||
--with-drivers-path="/usr/lib/va"
|
||||
|
||||
ifeq ($(BR2_PACKAGE_MESA3D_DRI_DRIVER),y)
|
||||
LIBVA_DEPENDENCIES += mesa3d
|
||||
LIBVA_CONF_OPT += --enable-glx
|
||||
LIBVA_CONF_OPTS += --enable-glx
|
||||
else
|
||||
LIBVA_CONF_OPT += --disable-glx
|
||||
LIBVA_CONF_OPTS += --disable-glx
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_XORG7),y)
|
||||
LIBVA_DEPENDENCIES += xlib_libX11 xlib_libXext xlib_libXfixes
|
||||
LIBVA_CONF_OPT += --enable-x11
|
||||
LIBVA_CONF_OPTS += --enable-x11
|
||||
else
|
||||
LIBVA_CONF_OPT += --disable-x11
|
||||
LIBVA_CONF_OPTS += --disable-x11
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_WAYLAND),y)
|
||||
LIBVA_DEPENDENCIES += wayland
|
||||
LIBVA_CONF_OPT += --enable-wayland
|
||||
LIBVA_CONF_OPTS += --enable-wayland
|
||||
else
|
||||
LIBVA_CONF_OPT += --disable-wayland
|
||||
LIBVA_CONF_OPTS += --disable-wayland
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_HAS_LIBEGL),y)
|
||||
LIBVA_DEPENDENCIES += libegl
|
||||
LIBVA_CONF_OPT += --enable-egl
|
||||
LIBVA_CONF_OPTS += --enable-egl
|
||||
else
|
||||
LIBVA_CONF_OPT += --disable-egl
|
||||
LIBVA_CONF_OPTS += --disable-egl
|
||||
endif
|
||||
|
||||
# Autoreconf requires an m4 directory to exist
|
||||
|
||||
Reference in New Issue
Block a user