mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-08 00:20:38 -09:00
package/spice: propagate libglib2 BR2_USE_MMU dependency
spice selects libglib2, but forgot to propagate the BR2_USE_MMU dependency. There is no practical implication at the moment as spice is only available for i386 and x86-64, and both always have MMU. But as we're about to relax this architecture dependency, it makes sense to fix the propagation of BR2_USE_MMU. Signed-off-by: Julien Olivain <ju.o@free.fr> [Thomas: patch extracted from https://patchwork.ozlabs.org/project/buildroot/patch/20241122213809.176709-1-ju.o@free.fr/] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
committed by
Thomas Petazzoni
parent
5333fe8b46
commit
ec45430d19
@@ -1,11 +1,13 @@
|
||||
comment "spice server needs a toolchain w/ wchar, threads, C++"
|
||||
depends on BR2_i386 || BR2_x86_64
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
|
||||
!BR2_INSTALL_LIBSTDCPP
|
||||
|
||||
config BR2_PACKAGE_SPICE
|
||||
bool "spice server"
|
||||
depends on BR2_i386 || BR2_x86_64
|
||||
depends on BR2_USE_MMU # libglib2
|
||||
depends on BR2_USE_WCHAR # libglib2
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
|
||||
Reference in New Issue
Block a user