Include missing patch

Noticed by:	pointyhat via pav
This commit is contained in:
Lars Thegler 2010-09-21 08:09:53 +00:00
parent 8e7bfe2e00
commit d2e872f445
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=261532
2 changed files with 13 additions and 0 deletions

View file

@ -7,6 +7,7 @@
PORTNAME= Net-IMAP-Simple PORTNAME= Net-IMAP-Simple
PORTVERSION= 1.2017 PORTVERSION= 1.2017
PORTREVISION= 1
CATEGORIES= mail perl5 CATEGORIES= mail perl5
MASTER_SITES= CPAN/../by-authors/id/J/JE/JETTERO MASTER_SITES= CPAN/../by-authors/id/J/JE/JETTERO
PKGNAMEPREFIX= p5- PKGNAMEPREFIX= p5-

View file

@ -0,0 +1,12 @@
--- ./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 .);