From: Philip Balister <philip@balister.org>
To: openembedded-devel@lists.openembedded.org
Subject: Re: [PATCH] ruby-native: fix building with gcc 4.4.x
Date: Fri, 22 Jan 2010 10:05:22 -0500 [thread overview]
Message-ID: <4B59BEB2.6080805@balister.org> (raw)
In-Reply-To: <1264149016-18488-1-git-send-email-marcin@juszkiewicz.com.pl>
On 01/22/2010 03:30 AM, Marcin Juszkiewicz wrote:
> From: Marcin Juszkiewicz<marcin@buglabs.net>
>
> Looks like gcc 4.4.x do not like the way Ruby programmers used
> preprocessor.
>
> This change is not present in .dev due to different versions of Ruby.
>
> Signed-off-by: Marcin Juszkiewicz<marcin@buglabs.net>
Acked-by: Philip Balister <philip@balister.org>
> ---
> recipes/ruby/files/gcc44.patch | 19 +++++++++++++++++++
> recipes/ruby/ruby-native_1.8.5.bb | 5 +++++
> 2 files changed, 24 insertions(+), 0 deletions(-)
> create mode 100644 recipes/ruby/files/gcc44.patch
>
> diff --git a/recipes/ruby/files/gcc44.patch b/recipes/ruby/files/gcc44.patch
> new file mode 100644
> index 0000000..dc5a608
> --- /dev/null
> +++ b/recipes/ruby/files/gcc44.patch
> @@ -0,0 +1,19 @@
> +---
> + math.c | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +--- ruby-1.8.5.orig/math.c
> ++++ ruby-1.8.5/math.c
> +@@ -32,11 +32,11 @@ domain_check(x, msg)
> + rb_sys_fail(msg);
> + }
> + if (isnan(x)) {
> + #if defined(EDOM)
> + errno = EDOM;
> +-#elif define(ERANGE)
> ++#elif defined(ERANGE)
> + errno = ERANGE;
> + #endif
> + continue;
> + }
> + break;
> diff --git a/recipes/ruby/ruby-native_1.8.5.bb b/recipes/ruby/ruby-native_1.8.5.bb
> index e4d2a33..f35363d 100644
> --- a/recipes/ruby/ruby-native_1.8.5.bb
> +++ b/recipes/ruby/ruby-native_1.8.5.bb
> @@ -1,2 +1,7 @@
> require ruby.inc
> inherit native
> +
> +PR = "r1"
> +
> +SRC_URI += " file://gcc44.patch;patch=1 "
> +
next prev parent reply other threads:[~2010-01-22 15:07 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-01-22 6:37 [STABLE][PATCH] ruby-native: fix building with gcc 4.4.x Marcin Juszkiewicz
2010-01-22 6:52 ` Khem Raj
2010-01-22 8:30 ` [PATCH] " Marcin Juszkiewicz
2010-01-22 15:05 ` Philip Balister [this message]
2010-01-22 16:09 ` Khem Raj
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=4B59BEB2.6080805@balister.org \
--to=philip@balister.org \
--cc=openembedded-devel@lists.openembedded.org \
/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.