summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-04-30 19:52:23 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-04-30 19:52:23 +0000
commita91608f2f4316e240ed8f57babad61fc4ced69bd (patch)
tree717c2042e63edc62c5f326c9c6f6237562ee7232
parentdf2143785dadb3f11f9c4ce4c1ff76a7503b9bfb (diff)
linux 2.6.28: fix kernel headers compilation error because of conflicting getline() function definitions - this bug seems to be gone in newer kernels
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15523 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r--target/linux/generic-2.6/patches-2.6.28/906-unifdef_getline.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/target/linux/generic-2.6/patches-2.6.28/906-unifdef_getline.patch b/target/linux/generic-2.6/patches-2.6.28/906-unifdef_getline.patch
new file mode 100644
index 000000000..ec32c514b
--- /dev/null
+++ b/target/linux/generic-2.6/patches-2.6.28/906-unifdef_getline.patch
@@ -0,0 +1,29 @@
+--- a/scripts/unifdef.c
++++ b/scripts/unifdef.c
+@@ -206,7 +206,7 @@ static void done(void);
+ 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 @@ process(void)
+
+ for (;;) {
+ linenum++;
+- lineval = getline();
++ lineval = __getline();
+ trans_table[ifstate[depth]][lineval]();
+ debug("process %s -> %s depth %d",
+ linetype_name[lineval],
+@@ -526,7 +526,7 @@ process(void)
+ * help from skipcomment().
+ */
+ static Linetype
+-getline(void)
++__getline(void)
+ {
+ const char *cp;
+ int cursym;