1config BR2_PACKAGE_MIRACLECAST 2 bool "miraclecast" 3 depends on BR2_PACKAGE_SYSTEMD 4 depends on BR2_TOOLCHAIN_USES_GLIBC 5 depends on BR2_USE_WCHAR # glib2 6 depends on BR2_TOOLCHAIN_HAS_THREADS # glib2 7 depends on BR2_USE_MMU # glib2 8 select BR2_PACKAGE_LIBGLIB2 9 select BR2_PACKAGE_GSTREAMER1 10 select BR2_PACKAGE_READLINE 11 help 12 The MiracleCast project provides software to connect external 13 monitors to your system via Wifi. It is compatible to the 14 Wifi-Display specification also known as Miracast. MiracleCast 15 implements the Display-Source as well as Display-Sink side. 16 17 https://github.com/albfan/miraclecast 18 19comment "miraclecast needs systemd and a glibc toolchain w/ threads and wchar" 20 depends on BR2_USE_MMU 21 depends on !BR2_TOOLCHAIN_USES_GLIBC || !BR2_USE_WCHAR \ 22 || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_PACKAGE_SYSTEMD 23