Add missing ${C,LD}FLAGS to various package builds
[qi-bootmenu-system.git] / sources / patches / uClibc-fix-unifdef-compilation.patch
blob5b3e1fba048d5a26146275120897fb2571d6802d
1 --- uClibc/extra/scripts/unifdef.c 2008-04-28 01:10:00.000000000 +0200
2 +++ uClibc-working/extra/scripts/unifdef.c 2009-11-13 15:02:29.000000000 +0100
3 @@ -206,7 +206,7 @@
4 static void error(const char *);
5 static int findsym(const char *);
6 static void flushline(bool);
7 -static Linetype getline(void);
8 +static Linetype get_line(void);
9 static Linetype ifeval(const char **);
10 static void ignoreoff(void);
11 static void ignoreon(void);
12 @@ -512,7 +512,7 @@
14 for (;;) {
15 linenum++;
16 - lineval = getline();
17 + lineval = get_line();
18 trans_table[ifstate[depth]][lineval]();
19 debug("process %s -> %s depth %d",
20 linetype_name[lineval],
21 @@ -526,7 +526,7 @@
22 * help from skipcomment().
24 static Linetype
25 -getline(void)
26 +get_line(void)
28 const char *cp;
29 int cursym;