Config.in 443 B

1234567891011121314
  1. config BR2_PACKAGE_LIBEBML
  2. bool "libebml"
  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. help
  7. Access library for the EBML (Extensible Binary Meta
  8. Language, a binary derivative of XML) format.
  9. http://matroska.org
  10. comment "libebml needs a toolchain w/ C++, wchar, gcc >= 4.9"
  11. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
  12. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9