diff options
author | Torsten Veller <tove@gentoo.org> | 2009-09-10 20:40:31 +0000 |
---|---|---|
committer | Torsten Veller <tove@gentoo.org> | 2009-09-10 20:40:31 +0000 |
commit | afb185761213a325ef81da0537afd45ab1e34d34 (patch) | |
tree | 9d6d5102231f64a72a33a3b1eec1e3e3ccea725c /perl-core/CGI/files | |
parent | Install yow.lines in a subdirectory. (diff) | |
download | gentoo-2-afb185761213a325ef81da0537afd45ab1e34d34.tar.gz gentoo-2-afb185761213a325ef81da0537afd45ab1e34d34.tar.bz2 gentoo-2-afb185761213a325ef81da0537afd45ab1e34d34.zip |
Version bump
(Portage version: 2.2_rc40/cvs/Linux x86_64)
Diffstat (limited to 'perl-core/CGI/files')
-rw-r--r-- | perl-core/CGI/files/3.47-fcgi.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/perl-core/CGI/files/3.47-fcgi.patch b/perl-core/CGI/files/3.47-fcgi.patch new file mode 100644 index 000000000000..922a577f14b5 --- /dev/null +++ b/perl-core/CGI/files/3.47-fcgi.patch @@ -0,0 +1,24 @@ +http://rt.cpan.org/Public/Bug/Display.html?id=49599 + +--- CGI.pm-3.47/t/fast.t ++++ CGI.pm-3.47/t/fast.t +@@ -7,16 +7,16 @@ + $fcgi = $@ ? 0 : 1; + } + +-use Test::More tests => 10; ++use Test::More tests => 11; + + # Shut up "used only once" warnings. + () = $CGI::Q; + () = $CGI::Fast::Ext_Request; + + SKIP: { +- skip( 'FCGI not installed, cannot continue', 7 ) unless $fcgi; ++ skip( 'FCGI not installed, cannot continue', 11 ) unless $fcgi; + +- use CGI::Fast; ++ use_ok( CGI::Fast ); + ok( my $q = CGI::Fast->new(), 'created new CGI::Fast object' ); + is( $q, $CGI::Q, 'checking to see if the object was stored properly' ); + is( $q->param(), (), 'no params' ); |