aboutsummaryrefslogtreecommitdiffstats
path: root/community/perl-io-gzip/PerlIO-gzip-0.18-RT92412.patch
diff options
context:
space:
mode:
authorFrancesco Colista <fcolista@alpinelinux.org>2016-08-25 07:07:47 +0000
committerFrancesco Colista <fcolista@alpinelinux.org>2016-08-25 07:07:47 +0000
commitfdb0bf4733c299d6aef8f37fce2bc4ac8a416ff0 (patch)
tree9572908b3436eff1addb5c4e7fd8301a3926e44e /community/perl-io-gzip/PerlIO-gzip-0.18-RT92412.patch
parentfe2b511062ead140b197af07e5a8f7e0ace3dfd8 (diff)
downloadaports-fdb0bf4733c299d6aef8f37fce2bc4ac8a416ff0.tar.bz2
aports-fdb0bf4733c299d6aef8f37fce2bc4ac8a416ff0.tar.xz
community/perl-io-gzip: upgraded to 0.19, moved from testing
Diffstat (limited to 'community/perl-io-gzip/PerlIO-gzip-0.18-RT92412.patch')
-rw-r--r--community/perl-io-gzip/PerlIO-gzip-0.18-RT92412.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/community/perl-io-gzip/PerlIO-gzip-0.18-RT92412.patch b/community/perl-io-gzip/PerlIO-gzip-0.18-RT92412.patch
new file mode 100644
index 0000000000..8c325d659a
--- /dev/null
+++ b/community/perl-io-gzip/PerlIO-gzip-0.18-RT92412.patch
@@ -0,0 +1,12 @@
+--- a/Makefile.PL 2006-10-01 21:28:25.000000000 +0000
++++ b/Makefile.PL 2014-01-23 15:40:56.784222851 +0000
+@@ -4,7 +4,8 @@
+ 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