summaryrefslogtreecommitdiff
path: root/packages/perl/files/uclibc.patch
diff options
context:
space:
mode:
authorJamie Lenehan <lenehan@twibble.org>2007-04-05 06:29:53 +0000
committerJamie Lenehan <lenehan@twibble.org>2007-04-05 06:29:53 +0000
commit38156d3b6c2372933ff6d290cba23eb6fc288000 (patch)
tree576f520c5db5761787c971cef7914bd84692e090 /packages/perl/files/uclibc.patch
parent64a8af80d3f598b8c31dd3d9f2d4c5968e53c797 (diff)
perl: Rearrange the patches/files a bit. Move the 5.8.4 specific
patches out of the common directory and only specify common files in the SRC_URI in perl.inc, move the others to the version specific .bb's.
Diffstat (limited to 'packages/perl/files/uclibc.patch')
-rw-r--r--packages/perl/files/uclibc.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/packages/perl/files/uclibc.patch b/packages/perl/files/uclibc.patch
deleted file mode 100644
index ce8fe80ff2..0000000000
--- a/packages/perl/files/uclibc.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-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
- */