1config BR2_PACKAGE_GST1_PYTHON 2 bool "gst1-python" 3 depends on BR2_USE_MMU # libglib2, gobject-introspection 4 depends on BR2_PACKAGE_GOBJECT_INTROSPECTION_ARCH_SUPPORTS # gobject-introspection 5 depends on BR2_HOST_GCC_AT_LEAST_8 # gobject-introspection -> host-qemu 6 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # gobject-introspection 7 depends on BR2_TOOLCHAIN_USES_GLIBC # gobject-introspection 8 depends on BR2_PACKAGE_PYTHON3 # gobject-introspection 9 select BR2_PACKAGE_GOBJECT_INTROSPECTION 10 select BR2_PACKAGE_GST1_PLUGINS_BASE 11 select BR2_PACKAGE_LIBGLIB2 12 select BR2_PACKAGE_PYTHON_GOBJECT 13 help 14 GStreamer python overrides for the gobject-introspection-based 15 pygst bindings. 16 17 https://gstreamer.freedesktop.org/modules/gst-python.html 18 19comment "gst1-python needs python3" 20 depends on !BR2_PACKAGE_PYTHON3 21 22comment "gst1-python needs a glibc toolchain, gcc >= 4.9, host gcc >= 8" 23 depends on BR2_USE_MMU 24 depends on BR2_PACKAGE_GOBJECT_INTROSPECTION_ARCH_SUPPORTS 25 depends on !BR2_TOOLCHAIN_USES_GLIBC || \ 26 !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || !BR2_HOST_GCC_AT_LEAST_8 27