Config.in 926 B

123456789101112131415161718192021222324
  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_TOOLCHAIN_GCC_AT_LEAST_4_9 # gobject-introspection
  6. depends on BR2_TOOLCHAIN_USES_GLIBC # gobject-introspection
  7. depends on BR2_PACKAGE_PYTHON3 # gobject-introspection
  8. select BR2_PACKAGE_GOBJECT_INTROSPECTION
  9. select BR2_PACKAGE_LIBGLIB2
  10. select BR2_PACKAGE_PYTHON_GOBJECT
  11. help
  12. GStreamer python overrides for the gobject-introspection-based
  13. pygst bindings.
  14. https://gstreamer.freedesktop.org/modules/gst-python.html
  15. comment "gst1-python needs python3"
  16. depends on !BR2_PACKAGE_PYTHON3
  17. comment "gst1-python needs a glibc toolchain, gcc >= 4.9"
  18. depends on BR2_USE_MMU
  19. depends on BR2_PACKAGE_GOBJECT_INTROSPECTION_ARCH_SUPPORTS
  20. depends on !BR2_TOOLCHAIN_USES_GLIBC || \
  21. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9