x265: needs dynamic library
authorGustavo Zacarias <gustavo@zacarias.com.ar>
Fri, 13 Nov 2015 15:02:14 +0000 (12:02 -0300)
committerPeter Korsgaard <peter@korsgaard.com>
Fri, 13 Nov 2015 15:08:16 +0000 (16:08 +0100)
Fixes:
http://autobuild.buildroot.net/results/60f/60fc8d54ec61c96e9beaa84154fe8d7e61e55d4e/

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/gstreamer1/gst1-plugins-bad/Config.in
package/x265/Config.in

index 26a963eb1311fa018b0f1910973fd59fbb3b74f9..f7714016bcda252821dbecb7379c9bb049d59903 100644 (file)
@@ -636,11 +636,12 @@ config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_HLS
 config BR2_PACKAGE_GST1_PLUGINS_BAD_PLUGIN_X265
        bool "x265"
        depends on BR2_INSTALL_LIBSTDCPP
+       depends on !BR2_STATIC_LIBS
        select BR2_PACKAGE_X265
        help
          x265 encoding plugin
 
-comment "x265 needs a toolchain w/ C++"
-       depends on !BR2_INSTALL_LIBSTDCPP
+comment "x265 needs a toolchain w/ C++, dynamic library"
+       depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS
 
 endif
index 15ae9339fb0f5961859cc1f3e6aa206213310a62..f268e658416010427d68775612fc2356ba7edabb 100644 (file)
@@ -2,6 +2,7 @@ config BR2_PACKAGE_X265
        bool "x265"
        depends on BR2_INSTALL_LIBSTDCPP
        depends on BR2_TOOLCHAIN_HAS_THREADS
+       depends on !BR2_STATIC_LIBS # dlfcn
        help
          x265 is an open source free software and library for encoding video
          using the High Efficiency Video Coding (HEVC/H.265) standard. x265 is
@@ -20,5 +21,6 @@ config BR2_PACKAGE_X265_CLI
 
 endif
 
-comment "x265 needs a toolchain w/ C++, threads"
-       depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
+comment "x265 needs a toolchain w/ C++, threads, dynamic library"
+       depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS || \
+               !BR2_TOOLCHAIN_HAS_THREADS