* [Buildroot] [PATCH 1/1] cups: add dependency on threads
@ 2017-11-01 10:24 Olivier Schonken
2017-11-01 13:05 ` Thomas Petazzoni
0 siblings, 1 reply; 2+ messages in thread
From: Olivier Schonken @ 2017-11-01 10:24 UTC (permalink / raw)
To: buildroot
Add myself as CUPS maintainer in DEVELOPERS list
Fixes
http://autobuild.buildroot.net/results/0f1cb8d72d0a78eb8b5c46548bc7c7bade93c674
Signed-off-by: Olivier Schonken <olivier.schonken@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@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
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [Buildroot] [PATCH 1/1] cups: add dependency on threads
2017-11-01 10:24 [Buildroot] [PATCH 1/1] cups: add dependency on threads Olivier Schonken
@ 2017-11-01 13:05 ` Thomas Petazzoni
0 siblings, 0 replies; 2+ messages in thread
From: Thomas Petazzoni @ 2017-11-01 13:05 UTC (permalink / raw)
To: buildroot
Hello,
On Wed, 1 Nov 2017 12:24:38 +0200, Olivier Schonken wrote:
> Add myself as CUPS maintainer in DEVELOPERS list
> Fixes
> http://autobuild.buildroot.net/results/0f1cb8d72d0a78eb8b5c46548bc7c7bade93c674
>
> Signed-off-by: Olivier Schonken <olivier.schonken@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/
This should have been a separate patch. Also, the indentation is wrong,
and you broke alphabetic ordering. I've fixed this and applied as a
separate patch.
Remember: independent changes should be made in separate patches.
> 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)
We generally use:
depends on !foo || !bar
instead, so I've fixed that and applied.
Thanks!
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2017-11-01 13:05 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-01 10:24 [Buildroot] [PATCH 1/1] cups: add dependency on threads Olivier Schonken
2017-11-01 13:05 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox