[Buildroot] [PATCH 1/1] cups: add dependency on threads

Olivier Schonken olivier.schonken at gmail.com
Wed Nov 1 10:24:38 UTC 2017


Add myself as CUPS maintainer in DEVELOPERS list
Fixes
http://autobuild.buildroot.net/results/0f1cb8d72d0a78eb8b5c46548bc7c7bade93c674

Signed-off-by: Olivier Schonken <olivier.schonken at gmail.com>
---
 DEVELOPERS             | 1 +
 package/cups/Config.in | 6 ++++--
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/DEVELOPERS b/DEVELOPERS
index 862399b45a..6c1319ccc4 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -1168,6 +1168,7 @@ F:	package/ijs/
 F:	package/poppler/
 F:	package/qpdf/
 F:	package/openjpeg/
+F:  package/cups/
 
 N:	Olivier Singla <olivier.singla at gmail.com>
 F:	package/shellinabox/
diff --git a/package/cups/Config.in b/package/cups/Config.in
index 3f5460c11b..635c0273c5 100644
--- a/package/cups/Config.in
+++ b/package/cups/Config.in
@@ -2,6 +2,8 @@ config BR2_PACKAGE_CUPS
 	bool "cups"
 	# needs libstdcpp for ppdc
 	depends on BR2_INSTALL_LIBSTDCPP
+	# needs threads for ippserver
+	depends on BR2_TOOLCHAIN_HAS_THREADS
 	# needs fork()
 	depends on BR2_USE_MMU
 	help
@@ -9,5 +11,5 @@ config BR2_PACKAGE_CUPS
 
 	  http://www.cups.org
 
-comment "cups needs a toolchain w/ C++"
-	depends on !BR2_INSTALL_LIBSTDCPP
+comment "cups needs a toolchain w/ C++, threads"
+	depends on !(BR2_INSTALL_LIBSTDCPP && BR2_TOOLCHAIN_HAS_THREADS)
-- 
2.14.1



More information about the buildroot mailing list