All of lore.kernel.org
 help / color / mirror / Atom feed
From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v2] rabbitmq-c: needs a toolchain with posix_spawn support
Date: Thu, 14 Jan 2016 10:15:28 +0100	[thread overview]
Message-ID: <20160114101528.70488889@free-electrons.com> (raw)
In-Reply-To: <1452761277-28917-1-git-send-email-joris.lijssens@gmail.com>

Joris,

On Thu, 14 Jan 2016 09:47:57 +0100, Joris Lijssens wrote:
> Fixes:
> http://autobuild.buildroot.net/results/a6c3e79c61c5a535970d03bf37b068349f766a7f/
> Signed-off-by: Joris Lijssens <joris.lijssens@gmail.com>

The empty line separating the commit log from the SoB line is still
missing.

> ---
>  package/rabbitmq-c/Config.in | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/package/rabbitmq-c/Config.in b/package/rabbitmq-c/Config.in
> index b330c90..73e3909 100644
> --- a/package/rabbitmq-c/Config.in
> +++ b/package/rabbitmq-c/Config.in
> @@ -1,6 +1,10 @@
>  config BR2_PACKAGE_RABBITMQ_C
>  	bool "rabbitmq-c"
>  	depends on BR2_TOOLCHAIN_HAS_THREADS
> +	# disable rabbitmq-c on blackfin, because it doesn't support
> +	# posix_spawn :
> +	# http://autobuild.buildroot.net/results/a6c3e79c61c5a535970d03bf37b068349f766a7f/
> +	depends on !BR2_bfin

I think this should rather be:

	# too old uClibc, not providing posix_spawn functions
	depends on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX

because theoretically, a different Blackfin toolchain using a newer
uClibc version would have spawn.h.

Also, the rabbitmq-c package has a comment that you need to update:

comment "rabbitmq-c needs a toolchain w/ threads"
        depends on !BR2_TOOLCHAIN_HAS_THREADS

should be changed to:

comment "rabbitmq-c needs a toolchain w/ threads"
	depends on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX
        depends on !BR2_TOOLCHAIN_HAS_THREADS

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

      reply	other threads:[~2016-01-14  9:15 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-14  8:47 [Buildroot] [PATCH v2] rabbitmq-c: needs a toolchain with posix_spawn support Joris Lijssens
2016-01-14  9:15 ` Thomas Petazzoni [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20160114101528.70488889@free-electrons.com \
    --to=thomas.petazzoni@free-electrons.com \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.