1config 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 11 http://matroska.org 12 13comment "libmatroska needs a toolchain w/ C++, wchar, gcc >= 4.9" 14 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \ 15 !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 16