mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-30 14:46:31 +00:00
mesa3d: use positive logic for XA enabling
Thanks to commit 2dde40081c49852bac0ee9c723911761bd5fc91e ("package/mesa3d: Refactor XA support to prepare support for ATI drivers"), we now have the blind option BR2_PACKAGE_MESA3D_NEEDS_XA that indicates whether XA support is needed. This allows to switch to use positive logic in the test for XA in mesa3d.mk, which this commit does. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
2dde40081c
commit
d538b8bf93
@ -36,7 +36,7 @@ MESA3D_DEPENDENCIES += \
|
|||||||
libxcb
|
libxcb
|
||||||
MESA3D_CONF_OPTS += --enable-glx
|
MESA3D_CONF_OPTS += --enable-glx
|
||||||
# quote from mesa3d configure "Building xa requires at least one non swrast gallium driver."
|
# quote from mesa3d configure "Building xa requires at least one non swrast gallium driver."
|
||||||
ifneq ($(BR2_PACKAGE_MESA3D_NEEDS_XA),)
|
ifeq ($(BR2_PACKAGE_MESA3D_NEEDS_XA),y)
|
||||||
MESA3D_CONF_OPTS += --enable-xa
|
MESA3D_CONF_OPTS += --enable-xa
|
||||||
else
|
else
|
||||||
MESA3D_CONF_OPTS += --disable-xa
|
MESA3D_CONF_OPTS += --disable-xa
|
||||||
|
Loading…
x
Reference in New Issue
Block a user