freebsd-ports/mail/p5-Net-IMAP-Simple/files/patch-Makefile.PL
Lars Thegler d2e872f445 Include missing patch
Noticed by:	pointyhat via pav
2010-09-21 08:09:53 +00:00

12 lines
521 B
Perl

--- ./Makefile.PL.orig 2010-08-09 15:49:20.000000000 +0200
+++ ./Makefile.PL 2010-09-18 18:17:48.000000000 +0200
@@ -1,8 +1,7 @@
use ExtUtils::MakeMaker;
use ExtUtils::Command qw(cp);
-my $build_simplex = prompt("Do you wish to include some simple protocol extensions (pulls in Parse::RecDescent)? ",
- $ENV{OVERRIDE_DEFAULT_SX} ? $ENV{OVERRIDE_DEFAULT_SX} : "y");
+my $build_simplex = $ENV{WITH_SX} ? 'Y' : '';
if( $build_simplex =~ m/[Yy]/ ) {
local @ARGV = qw(contrib/SimpleX.pod contrib/SimpleX.pm .);