Config.in 455 B

123456789101112131415
  1. config BR2_PACKAGE_LIBMATROSKA
  2. bool "libmatroska"
  3. depends on BR2_INSTALL_LIBSTDCPP
  4. depends on BR2_USE_WCHAR
  5. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # C++14
  6. select BR2_PACKAGE_LIBEBML
  7. help
  8. Extensible open standard audio/video container format access
  9. library.
  10. http://matroska.org
  11. comment "libmatroska needs a toolchain w/ C++, wchar, gcc >= 4.9"
  12. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
  13. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9