diff options
author | Richard Purdie <richard@openedhand.com> | 2006-07-21 10:10:31 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-07-21 10:10:31 +0000 |
commit | b2f192faabe412adce79534e22efe9fb69ee40e2 (patch) | |
tree | 7076c49d4286f8a1733650bd8fbc7161af200d57 /meta/packages/perl/files/uclibc.patch | |
parent | 2cf0eadf9f730027833af802d7e6c90b44248f80 (diff) | |
download | poky-b2f192faabe412adce79534e22efe9fb69ee40e2.tar.gz |
Rename /openembedded/ -> /meta/
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@530 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/perl/files/uclibc.patch')
-rw-r--r-- | meta/packages/perl/files/uclibc.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/meta/packages/perl/files/uclibc.patch b/meta/packages/perl/files/uclibc.patch new file mode 100644 index 0000000000..ce8fe80ff2 --- /dev/null +++ b/meta/packages/perl/files/uclibc.patch | |||
@@ -0,0 +1,26 @@ | |||
1 | As seen at http://codepoet.org/lists/uclibc/2004-March/008512.html: | ||
2 | |||
3 | Try the following (untested). In .26, the field member was filedes. | ||
4 | Current cvs uses __filedes (double underscore prefix). | ||
5 | |||
6 | Manuel | ||
7 | |||
8 | --- perl-5.8.4.orig/perlio.c 2004-03-22 14:54:03.000000000 -0500 | ||
9 | +++ perl-5.8.4/perlio.c 2005-03-09 04:33:49.386767312 -0500 | ||
10 | @@ -2824,7 +2824,15 @@ | ||
11 | /* XXX this could use PerlIO_canset_fileno() and | ||
12 | * PerlIO_set_fileno() support from Configure | ||
13 | */ | ||
14 | -# if defined(__GLIBC__) | ||
15 | +# if defined(__UCLIBC__) | ||
16 | + /* uClibc must come before glibc because it defines __GLIBC__ as well. */ | ||
17 | +# if defined(__MASK_READING) | ||
18 | + f->__filedes = -1; | ||
19 | +# else | ||
20 | + f->filedes = -1; | ||
21 | +# endif | ||
22 | + return 1; | ||
23 | +# elif defined(__GLIBC__) | ||
24 | /* There may be a better way for GLIBC: | ||
25 | - libio.h defines a flag to not close() on cleanup | ||
26 | */ | ||