diff options
| author | Bartosz Golaszewski <brgl@bgdev.pl> | 2017-07-05 09:56:20 +0200 |
|---|---|---|
| committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-07-05 11:35:51 +0200 |
| commit | 7d9d40683260e6c74faaabb76715dfc77b9edd60 (patch) | |
| tree | c82e1bd252fad5d815a2d49d9076a1ca586d1ca7 /package/pulseview | |
| parent | 421b9d175fc1e4c0369ecbe32d83caf29d10b093 (diff) | |
| download | buildroot-7d9d40683260e6c74faaabb76715dfc77b9edd60.tar.gz buildroot-7d9d40683260e6c74faaabb76715dfc77b9edd60.zip | |
libzip: depend on !BR2_STATIC_LIBS
Since version 1.2.0 libzip requires dynamic library capabilities. Add
it to Config.in and propagate this dependency to packages selecting
libzip.
Fixes:
http://autobuild.buildroot.net/results/c50ffa5bf565e75333192edc89e2d39044d07f26/
Signed-off-by: Bartosz Golaszewski <brgl@bgdev.pl>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/pulseview')
| -rw-r--r-- | package/pulseview/Config.in | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/package/pulseview/Config.in b/package/pulseview/Config.in index 81c73e352b..926376e785 100644 --- a/package/pulseview/Config.in +++ b/package/pulseview/Config.in @@ -6,6 +6,8 @@ config BR2_PACKAGE_PULSEVIEW depends on BR2_TOOLCHAIN_HAS_THREADS depends on BR2_USE_MMU depends on BR2_INSTALL_LIBSTDCPP + # libsigrok->libzip + depends on !BR2_STATIC_LIBS # libsigrok depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 select BR2_PACKAGE_LIBSIGROK @@ -24,8 +26,8 @@ config BR2_PACKAGE_PULSEVIEW http://sigrok.org/wiki/PulseView -comment "pulseview needs a toolchain w/ wchar, threads, C++, gcc >= 4.8" +comment "pulseview needs a toolchain w/ wchar, threads, dynamic library, C++, gcc >= 4.8" depends on BR2_USE_MMU depends on BR2_PACKAGE_QT5 depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 || !BR2_USE_WCHAR \ - || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP + || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS |

