summaryrefslogtreecommitdiff
path: root/packages/perl/files/uclibc.patch
diff options
context:
space:
mode:
authorKoen Kooi <koen@openembedded.org>2005-06-30 08:19:37 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-06-30 08:19:37 +0000
commitc8e5702127e507e82e6f68a4b8c546803accea9d (patch)
tree00583491f40ecc640f2b28452af995e3a63a09d7 /packages/perl/files/uclibc.patch
parent87ec8ca4d2e2eb4d1c1e1e1a6b46a395d56805b9 (diff)
import clean BK tree at cset 1.3670
Diffstat (limited to 'packages/perl/files/uclibc.patch')
-rw-r--r--packages/perl/files/uclibc.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/packages/perl/files/uclibc.patch b/packages/perl/files/uclibc.patch
index e69de29bb2..ce8fe80ff2 100644
--- a/packages/perl/files/uclibc.patch
+++ b/packages/perl/files/uclibc.patch
@@ -0,0 +1,26 @@
+As seen at http://codepoet.org/lists/uclibc/2004-March/008512.html:
+
+Try the following (untested). In .26, the field member was filedes.
+Current cvs uses __filedes (double underscore prefix).
+
+Manuel
+
+--- perl-5.8.4.orig/perlio.c 2004-03-22 14:54:03.000000000 -0500
++++ perl-5.8.4/perlio.c 2005-03-09 04:33:49.386767312 -0500
+@@ -2824,7 +2824,15 @@
+ /* XXX this could use PerlIO_canset_fileno() and
+ * PerlIO_set_fileno() support from Configure
+ */
+-# if defined(__GLIBC__)
++# if defined(__UCLIBC__)
++ /* uClibc must come before glibc because it defines __GLIBC__ as well. */
++# if defined(__MASK_READING)
++ f->__filedes = -1;
++# else
++ f->filedes = -1;
++# endif
++ return 1;
++# elif defined(__GLIBC__)
+ /* There may be a better way for GLIBC:
+ - libio.h defines a flag to not close() on cleanup
+ */