summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/bison/bison/uclibc-sched_param-def.patch
diff options
context:
space:
mode:
authorNitin A Kamble <nitin.a.kamble@intel.com>2011-05-23 15:40:04 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-06-06 15:58:39 +0100
commit90d5d3ca116fc4d0a6412fbb66282ec1c0996dd3 (patch)
treed43beb0e4d232db16f1ef16fc071d901daad3afe /meta/recipes-devtools/bison/bison/uclibc-sched_param-def.patch
parentd0c2307bca5e98c7ff7bbef9867cebce7b8aeafa (diff)
downloadpoky-90d5d3ca116fc4d0a6412fbb66282ec1c0996dd3.tar.gz
bison: upgrade from 2.4.3 to 2.5
This version of bison needs m4 1.4.16 or newer (From OE-Core rev: 8aa07da69f4966afda40d77b1e8b83749c5d1c28) Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/bison/bison/uclibc-sched_param-def.patch')
-rw-r--r--meta/recipes-devtools/bison/bison/uclibc-sched_param-def.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/meta/recipes-devtools/bison/bison/uclibc-sched_param-def.patch b/meta/recipes-devtools/bison/bison/uclibc-sched_param-def.patch
deleted file mode 100644
index 6774838ba8..0000000000
--- a/meta/recipes-devtools/bison/bison/uclibc-sched_param-def.patch
+++ /dev/null
@@ -1,21 +0,0 @@
1Upstream-Status: Pending
2
3uclibc defines __GLIBC__ but it does not expose struct shed_param as much as glibc
4and is not needed too per standard. gnulib attempts to use it but we have to account
5for it because in this case uclibc does not behave like glibc.
6
7-Khem
8
9http://bugs.gentoo.org/336484
10
11--- m4-1.4.14/lib/spawn.in.h
12+++ m4-1.4.14/lib/spawn.in.h
13@@ -31,7 +31,7 @@
14
15 /* Get definitions of 'struct sched_param' and 'sigset_t'.
16 But avoid namespace pollution on glibc systems. */
17-#ifndef __GLIBC__
18+#if !defined __GLIBC__ || defined __UCLIBC__
19 # include <sched.h>
20 # include <signal.h>
21 #endif