linux-libc-headers_2.6.20.bb : more modern glibc expose getline from stdio.h rename the function so not to cause a clash

Signed-off-by: Marcin Juszkiewicz <marcin@buglabs.net>
This commit is contained in:
Graeme Gregory 2009-04-28 11:39:38 +01:00 committed by Marcin Juszkiewicz
parent 23212b4c3d
commit 3e23549d0a
2 changed files with 34 additions and 2 deletions

View File

@ -0,0 +1,31 @@
Index: linux-2.6.20/scripts/unifdef.c
===================================================================
--- linux-2.6.20.orig/scripts/unifdef.c
+++ linux-2.6.20/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 parseline(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 = parseline();
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)
+parseline(void)
{
const char *cp;
int cursym;

View File

@ -2,10 +2,11 @@ require linux-libc-headers.inc
INHIBIT_DEFAULT_DEPS = "1"
DEPENDS += "unifdef-native"
PR = "r8"
PR = "r9"
SRC_URI = "${KERNELORG_MIRROR}/pub/linux/kernel/v2.6/linux-${PV}.tar.bz2 \
file://procinfo.h"
file://procinfo.h \
file://unifdef.patch;patch=1"
S = "${WORKDIR}/linux-${PV}"