libc/uClibc: portability fixes to install_headers
authorTitus von Boxberg <titus@v9g.de>
Mon Aug 22 09:38:19 2011 +0200 (2011-08-22)
changeset 2627b745004e1d29
parent 2626 c7c9e98d36d8
child 2628 a4f56e266879
libc/uClibc: portability fixes to install_headers

Add patch files for uClibc-0.9.30:
extra/scripts/install_headers.sh: find must be called with path.
extra/scripts/unifdef.c: getline is declared in <stdio.h>, use different name.

Reported-by: "Guylhem Aznar" <crossgcc@guylhem.net>
Reported-by: "Titus von Boxberg" <titus@v9g.de>
Signed-off-by: "Titus von Boxberg" <titus@v9g.de>
patches/uClibc/0.9.30/200-getline-already-declared.patch
patches/uClibc/0.9.30/210-find-portable.patch
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/patches/uClibc/0.9.30/200-getline-already-declared.patch	Mon Aug 22 09:38:19 2011 +0200
     1.3 @@ -0,0 +1,29 @@
     1.4 +--- uClibc-0.9.30.orig/extra/scripts/unifdef.c	2008-04-28 01:10:00.000000000 +0200
     1.5 ++++ uClibc-0.9.30/extra/scripts/unifdef.c	2011-08-21 09:42:21.000000000 +0200
     1.6 +@@ -206,7 +206,7 @@
     1.7 + static void             error(const char *);
     1.8 + static int              findsym(const char *);
     1.9 + static void             flushline(bool);
    1.10 +-static Linetype         getline(void);
    1.11 ++static Linetype         getlinetype(void);
    1.12 + static Linetype         ifeval(const char **);
    1.13 + static void             ignoreoff(void);
    1.14 + static void             ignoreon(void);
    1.15 +@@ -512,7 +512,7 @@
    1.16 + 
    1.17 + 	for (;;) {
    1.18 + 		linenum++;
    1.19 +-		lineval = getline();
    1.20 ++		lineval = getlinetype();
    1.21 + 		trans_table[ifstate[depth]][lineval]();
    1.22 + 		debug("process %s -> %s depth %d",
    1.23 + 		    linetype_name[lineval],
    1.24 +@@ -526,7 +526,7 @@
    1.25 +  * help from skipcomment().
    1.26 +  */
    1.27 + static Linetype
    1.28 +-getline(void)
    1.29 ++getlinetype(void)
    1.30 + {
    1.31 + 	const char *cp;
    1.32 + 	int cursym;
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/patches/uClibc/0.9.30/210-find-portable.patch	Mon Aug 22 09:38:19 2011 +0200
     2.3 @@ -0,0 +1,11 @@
     2.4 +--- uClibc-0.9.30.orig/extra/scripts/install_headers.sh	2008-10-10 15:50:38.000000000 +0200
     2.5 ++++ uClibc-0.9.30/extra/scripts/install_headers.sh	2011-08-21 09:49:03.000000000 +0200
     2.6 +@@ -33,7 +33,7 @@
     2.7 + (
     2.8 + # We must cd, or else we'll prepend "$1" to filenames!
     2.9 + cd "$1" || exit 1
    2.10 +-find ! -name '.' -a ! -path '*/.*' | sed -e 's/^\.\///' -e '/^config\//d' \
    2.11 ++find . ! -name '.' -a ! -path '*/.*' | sed -e 's/^\.\///' -e '/^config\//d' \
    2.12 + 	-e '/^config$/d'
    2.13 + ) | \
    2.14 + (