diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-09-19 16:50:46 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-09-19 16:50:46 +0200 |
commit | 0bb3983c9b612e861f43bc9f6470fc7c5b9adbbc (patch) | |
tree | e842ddce7f7719e5c99694129118efc088a46aa9 | |
parent | ddcb1e4e92a426b935aa169466658d2041b9ebcf (diff) |
google-breakpad: needs thread support
When google-breakpad was enabled in uClibc configurations, the
dependency on threads was forgotten.
Fixes:
http://autobuild.buildroot.net/results/6e6bc845314100f2deb8ed06d2a6373ccf715ffe/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | Config.in | 1 | ||||
-rw-r--r-- | package/google-breakpad/Config.in | 4 |
2 files changed, 4 insertions, 1 deletions
@@ -554,6 +554,7 @@ config BR2_GOOGLE_BREAKPAD_ENABLE select BR2_PACKAGE_GOOGLE_BREAKPAD depends on BR2_INSTALL_LIBSTDCPP depends on BR2_USE_WCHAR + depends on BR2_TOOLCHAIN_HAS_THREADS depends on (BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_UCLIBC) depends on BR2_PACKAGE_GOOGLE_BREAKPAD_ARCH_SUPPORTS help diff --git a/package/google-breakpad/Config.in b/package/google-breakpad/Config.in index fdaab7a66..c800974db 100644 --- a/package/google-breakpad/Config.in +++ b/package/google-breakpad/Config.in @@ -7,6 +7,7 @@ config BR2_PACKAGE_GOOGLE_BREAKPAD bool "google-breakpad" depends on BR2_INSTALL_LIBSTDCPP depends on BR2_USE_WCHAR + depends on BR2_TOOLCHAIN_HAS_THREADS depends on (BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_UCLIBC) depends on BR2_PACKAGE_GOOGLE_BREAKPAD_ARCH_SUPPORTS help @@ -30,7 +31,8 @@ config BR2_PACKAGE_GOOGLE_BREAKPAD http://code.google.com/p/google-breakpad/ -comment "google-breakpad requires a glibc or uClibc toolchain w/ wchar, C++ enabled" +comment "google-breakpad requires a glibc or uClibc toolchain w/ wchar, thread, C++ enabled" depends on BR2_PACKAGE_GOOGLE_BREAKPAD_ARCH_SUPPORTS depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \ + !BR2_TOOLCHAIN_HAS_THREADS || \ !(BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_UCLIBC) |