diff options
author | mef <mef@pkgsrc.org> | 2015-04-16 22:33:23 +0000 |
---|---|---|
committer | mef <mef@pkgsrc.org> | 2015-04-16 22:33:23 +0000 |
commit | f243c4f30adddc9fb6150a880fe1c464cc9b6572 (patch) | |
tree | 088c651b18ad7ae795e9736f02104f45f234dc99 /devel | |
parent | 27b4475e6beb218c7433120b94beae46e714502a (diff) | |
download | pkgsrc-f243c4f30adddc9fb6150a880fe1c464cc9b6572.tar.gz |
patch-Makefile.PL was not deleted from CVS, sorry, thanks wiz@
Diffstat (limited to 'devel')
-rw-r--r-- | devel/p5-PerlIO-gzip/patches/patch-Makefile.PL | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/devel/p5-PerlIO-gzip/patches/patch-Makefile.PL b/devel/p5-PerlIO-gzip/patches/patch-Makefile.PL deleted file mode 100644 index 4c861f0ffb6..00000000000 --- a/devel/p5-PerlIO-gzip/patches/patch-Makefile.PL +++ /dev/null @@ -1,18 +0,0 @@ -$NetBSD: patch-Makefile.PL,v 1.1 2014/06/28 19:52:05 schmonz Exp $ - -Don't assume usesfio is core config (in Perl 5.20, it no longer is). - -Patch from <https://rt.cpan.org/Public/Bug/Display.html?id=92412>. - ---- Makefile.PL.orig 2006-10-01 21:28:25.000000000 +0000 -+++ Makefile.PL -@@ -4,7 +4,8 @@ use 5.008; # Stop perl 5.005 or earler b - use ExtUtils::MakeMaker; - use Config; - --unless ($Config{useperlio} eq 'define' and $Config{usesfio} eq 'false') { -+unless ($Config{useperlio} eq 'define' and -+ (defined($Config{usesfio}) ? $Config{usesfio} : 'false') eq 'false') { - die <<BARF; - You need perl 5.8.0 or later, configured to use perlio (and not to use sfio) - BARF |