Config.in 1.1 KB

1234567891011121314151617181920212223242526
  1. config 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. https://gstreamer.freedesktop.org/modules/gst-python.html
  17. comment "gst1-python needs python3"
  18. depends on !BR2_PACKAGE_PYTHON3
  19. comment "gst1-python needs a glibc toolchain, gcc >= 4.9, host gcc >= 8"
  20. depends on BR2_USE_MMU
  21. depends on BR2_PACKAGE_GOBJECT_INTROSPECTION_ARCH_SUPPORTS
  22. depends on !BR2_TOOLCHAIN_USES_GLIBC || \
  23. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || !BR2_HOST_GCC_AT_LEAST_8