diff options
author | Robert Coie <rac@gentoo.org> | 2003-03-01 01:01:40 +0000 |
---|---|---|
committer | Robert Coie <rac@gentoo.org> | 2003-03-01 01:01:40 +0000 |
commit | 727c2c0f73a929182c7a606078dc7fa5323fd00d (patch) | |
tree | 3d0115936175d6fb4eaa49c745aea2e79a6cce60 /sys-devel/perl | |
parent | Someone comitted an ebuild without a ChangeLog. Also fixed missing fields (diff) | |
download | gentoo-2-727c2c0f73a929182c7a606078dc7fa5323fd00d.tar.gz gentoo-2-727c2c0f73a929182c7a606078dc7fa5323fd00d.tar.bz2 gentoo-2-727c2c0f73a929182c7a606078dc7fa5323fd00d.zip |
patches for 5.8.0-r10
Diffstat (limited to 'sys-devel/perl')
-rw-r--r-- | sys-devel/perl/files/perl-5.8.0-perldoc-emptydirs.patch | 10 | ||||
-rw-r--r-- | sys-devel/perl/files/perl-5.8.0-prelink-lpthread.patch | 11 |
2 files changed, 21 insertions, 0 deletions
diff --git a/sys-devel/perl/files/perl-5.8.0-perldoc-emptydirs.patch b/sys-devel/perl/files/perl-5.8.0-perldoc-emptydirs.patch new file mode 100644 index 000000000000..93d8e00ca5b0 --- /dev/null +++ b/sys-devel/perl/files/perl-5.8.0-perldoc-emptydirs.patch @@ -0,0 +1,10 @@ +--- utils/perldoc.PL.orig 2003-02-28 15:57:31.000000000 -0800 ++++ utils/perldoc.PL 2003-02-28 15:57:58.000000000 -0800 +@@ -340,6 +340,7 @@ + $global_target = (splitdir $s)[-1]; # XXX: why not use File::Basename? + for ($i=0; $i<@dirs; $i++) { + $dir = $dirs[$i]; ++ next unless -d $dir; + ($dir = VMS::Filespec::unixpath($dir)) =~ s!/\z!! if $Is_VMS; + if ( (! $opt_m && ( $ret = check_file $dir,"$s.pod")) + or ( $ret = check_file $dir,"$s.pm") diff --git a/sys-devel/perl/files/perl-5.8.0-prelink-lpthread.patch b/sys-devel/perl/files/perl-5.8.0-prelink-lpthread.patch new file mode 100644 index 000000000000..d38497e0aebe --- /dev/null +++ b/sys-devel/perl/files/perl-5.8.0-prelink-lpthread.patch @@ -0,0 +1,11 @@ +--- hints/linux.sh.orig 2003-02-14 18:11:50.000000000 -0800 ++++ hints/linux.sh 2003-02-14 18:12:01.000000000 -0800 +@@ -43,7 +43,7 @@ + # 'kaffe' has a /usr/lib/libnet.so which is not at all relevent for perl. + set `echo X "$libswanted "| sed -e 's/ bsd / /' -e 's/ net / /'` + shift +-libswanted="$*" ++libswanted="pthread $*" + + # If you have glibc, then report the version for ./myconfig bug reporting. + # (Configure doesn't need to know the specific version since it just uses |