summaryrefslogtreecommitdiff
path: root/meta/recipes-core/uclibc/uclibc-0.9.30.1/gcc-4.4-fixlet.patch
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2011-05-22 12:02:12 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-05-23 15:53:16 +0100
commitac60a936e737680c16b287a3dab6aa285d87c5c0 (patch)
tree3ba87af4e38641def4f2ec974cc28c196c50f50e /meta/recipes-core/uclibc/uclibc-0.9.30.1/gcc-4.4-fixlet.patch
parent65f1109faf9548c5d083089561d5b9d99dbacc83 (diff)
downloadopenembedded-core-ac60a936e737680c16b287a3dab6aa285d87c5c0.tar.gz
openembedded-core-ac60a936e737680c16b287a3dab6aa285d87c5c0.tar.bz2
openembedded-core-ac60a936e737680c16b287a3dab6aa285d87c5c0.tar.xz
openembedded-core-ac60a936e737680c16b287a3dab6aa285d87c5c0.zip
uclibc: Upgrade to 0.9.32-rc3
Bring in the uclibc recipes from meta-oe they have been well tested by now. Delete 0.9.30.1 recipes Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta/recipes-core/uclibc/uclibc-0.9.30.1/gcc-4.4-fixlet.patch')
-rw-r--r--meta/recipes-core/uclibc/uclibc-0.9.30.1/gcc-4.4-fixlet.patch31
1 files changed, 0 insertions, 31 deletions
diff --git a/meta/recipes-core/uclibc/uclibc-0.9.30.1/gcc-4.4-fixlet.patch b/meta/recipes-core/uclibc/uclibc-0.9.30.1/gcc-4.4-fixlet.patch
deleted file mode 100644
index b9ff6710b..000000000
--- a/meta/recipes-core/uclibc/uclibc-0.9.30.1/gcc-4.4-fixlet.patch
+++ /dev/null
@@ -1,31 +0,0 @@
-Index: uClibc-0.9.30.1/extra/scripts/unifdef.c
-===================================================================
---- uClibc-0.9.30.1.orig/extra/scripts/unifdef.c 2009-08-09 11:55:23.000000000 +0200
-+++ uClibc-0.9.30.1/extra/scripts/unifdef.c 2009-08-09 11:55:46.000000000 +0200
-@@ -206,7 +206,7 @@
- static void error(const char *);
- static int findsym(const char *);
- static void flushline(bool);
--static Linetype getline(void);
-+static Linetype _getline(void);
- static Linetype ifeval(const char **);
- static void ignoreoff(void);
- static void ignoreon(void);
-@@ -512,7 +512,7 @@
-
- for (;;) {
- linenum++;
-- lineval = getline();
-+ lineval = _getline();
- trans_table[ifstate[depth]][lineval]();
- debug("process %s -> %s depth %d",
- linetype_name[lineval],
-@@ -526,7 +526,7 @@
- * help from skipcomment().
- */
- static Linetype
--getline(void)
-+_getline(void)
- {
- const char *cp;
- int cursym;