]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
libebml: needs wchar support
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Wed, 29 Jul 2015 14:48:20 +0000 (16:48 +0200)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Wed, 29 Jul 2015 14:48:20 +0000 (16:48 +0200)
Fixes:

  http://autobuild.buildroot.org/results/83a/83af643e377f53feea044eb6fe1447f7ea502612/

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/libebml/Config.in
package/libmatroska/Config.in

index b50a4921a4ed791ed333dfde6126031c95b2f5cf..a00b89435834a866db0d7fa80b6052295b5e8144 100644 (file)
@@ -1,11 +1,12 @@
 config BR2_PACKAGE_LIBEBML
        bool "libebml"
        depends on BR2_INSTALL_LIBSTDCPP
+       depends on BR2_USE_WCHAR
        help
          Access library for the EBML (Extensible Binary Meta
          Language, a binary derivative of XML) format.
 
          http://matroska.org
 
-comment "libebml needs a toolchain w/ C++"
-       depends on !BR2_INSTALL_LIBSTDCPP
+comment "libebml needs a toolchain w/ C++, wchar"
+       depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR
index 81270dede4382c07c8fe74ac759460307283879a..5815a46c599a874e2b589b4239cf3b88c124fae1 100644 (file)
@@ -2,11 +2,12 @@ config BR2_PACKAGE_LIBMATROSKA
        bool "libmatroska"
        select BR2_PACKAGE_LIBEBML
        depends on BR2_INSTALL_LIBSTDCPP
+       depends on BR2_USE_WCHAR
        help
          Extensible open standard audio/video container format access
          library.
 
          http://matroska.org
 
-comment "libmatroska needs a toolchain w/ C++"
-       depends on !BR2_INSTALL_LIBSTDCPP
+comment "libmatroska needs a toolchain w/ C++, wchar"
+       depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR