]> git.pld-linux.org Git - packages/perl-PerlIO-gzip.git/blame - config_usesfio.patch
perl 5.38.0 rebuild
[packages/perl-PerlIO-gzip.git] / config_usesfio.patch
CommitLineData
7ad81f14
JR
1--- a/Makefile.PL 2006-10-01 21:28:25.000000000 +0000
2+++ b/Makefile.PL 2014-01-23 15:40:56.784222851 +0000
3@@ -4,7 +4,8 @@
4 use ExtUtils::MakeMaker;
5 use Config;
6
7-unless ($Config{useperlio} eq 'define' and $Config{usesfio} eq 'false') {
8+unless ($Config{useperlio} eq 'define' and
9+ (defined($Config{usesfio}) ? $Config{usesfio} : 'false') eq 'false') {
10 die <<BARF;
11 You need perl 5.8.0 or later, configured to use perlio (and not to use sfio)
12 BARF
This page took 0.147094 seconds and 4 git commands to generate.