diff options
author | Holger Hans Peter Freyther <zecke@selfish.org> | 2009-08-09 12:05:39 +0200 |
---|---|---|
committer | Holger Hans Peter Freyther <zecke@selfish.org> | 2009-08-09 12:11:07 +0200 |
commit | b9d8c34bc09feb72fd4578a0c6afe9bec5adf704 (patch) | |
tree | 8bddbbff4e19111a8f4d5f5a1c4ed314d7751355 /recipes/uclibc/uclibc-0.9.30.1 | |
parent | cb58de6bef73047d3fdf8f58c669137393976091 (diff) |
uclibc-initial_0.9.30.1.bb: Fix do_stage for ubuntu karmic
gcc4.4 and glibc 2.10 complain that getline already has
a different signature. Rename the version in the unidef.c.
Diffstat (limited to 'recipes/uclibc/uclibc-0.9.30.1')
-rw-r--r-- | recipes/uclibc/uclibc-0.9.30.1/gcc-4.4-fixlet.patch | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/recipes/uclibc/uclibc-0.9.30.1/gcc-4.4-fixlet.patch b/recipes/uclibc/uclibc-0.9.30.1/gcc-4.4-fixlet.patch new file mode 100644 index 0000000000..b9ff6710bc --- /dev/null +++ b/recipes/uclibc/uclibc-0.9.30.1/gcc-4.4-fixlet.patch @@ -0,0 +1,31 @@ +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; |