diff options
author | Richard Purdie <richard@openedhand.com> | 2005-08-31 10:45:47 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2005-08-31 10:45:47 +0000 |
commit | 4b46c1f6e891b1ddd5968536440b888661fade3e (patch) | |
tree | e0ba2c1f56f61b868bf746da5c4feabb25b800b2 /openembedded/packages/perl/files/uclibc.patch | |
download | poky-4b46c1f6e891b1ddd5968536440b888661fade3e.tar.gz |
Initial population
git-svn-id: https://svn.o-hand.com/repos/poky@1 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/perl/files/uclibc.patch')
-rw-r--r-- | openembedded/packages/perl/files/uclibc.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/openembedded/packages/perl/files/uclibc.patch b/openembedded/packages/perl/files/uclibc.patch new file mode 100644 index 0000000000..ce8fe80ff2 --- /dev/null +++ b/openembedded/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 | */ | ||