File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11Revision history for HTTP-Message
22
33{{$NEXT}}
4+ - Remove dependency to IO::Uncompress::Gunzip. (Michal Josef Spacek)
45
566.42 2022-10-18 13:53:22Z
67 - We now don't consider the Content-Location header when asked
Original file line number Diff line number Diff line change 6464 "IO::Compress::Gzip" : " 0" ,
6565 "IO::HTML" : " 0" ,
6666 "IO::Uncompress::Bunzip2" : " 2.021" ,
67- "IO::Uncompress::Gunzip" : " 0" ,
6867 "IO::Uncompress::Inflate" : " 0" ,
6968 "IO::Uncompress::RawInflate" : " 0" ,
7069 "LWP::MediaTypes" : " 6" ,
Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ my %WriteMakefileArgs = (
3030 " IO::Compress::Gzip" => 0,
3131 " IO::HTML" => 0,
3232 " IO::Uncompress::Bunzip2" => " 2.021" ,
33- " IO::Uncompress::Gunzip" => 0,
3433 " IO::Uncompress::Inflate" => 0,
3534 " IO::Uncompress::RawInflate" => 0,
3635 " LWP::MediaTypes" => 6,
@@ -77,7 +76,6 @@ my %FallbackPrereqs = (
7776 " IO::Compress::Gzip" => 0,
7877 " IO::HTML" => 0,
7978 " IO::Uncompress::Bunzip2" => " 2.021" ,
80- " IO::Uncompress::Gunzip" => 0,
8179 " IO::Uncompress::Inflate" => 0,
8280 " IO::Uncompress::RawInflate" => 0,
8381 " LWP::MediaTypes" => 6,
Original file line number Diff line number Diff line change @@ -14,7 +14,6 @@ requires "IO::Compress::Deflate" => "0";
1414requires " IO::Compress::Gzip" => " 0" ;
1515requires " IO::HTML" => " 0" ;
1616requires " IO::Uncompress::Bunzip2" => " 2.021" ;
17- requires " IO::Uncompress::Gunzip" => " 0" ;
1817requires " IO::Uncompress::Inflate" => " 0" ;
1918requires " IO::Uncompress::RawInflate" => " 0" ;
2019requires " LWP::MediaTypes" => " 6" ;
Original file line number Diff line number Diff line change @@ -493,7 +493,7 @@ sub decodable
493493 # XXX preferably we should determine if the modules are available without loading
494494 # them here
495495 eval {
496- require IO::Uncompress::Gunzip ;
496+ require Compress::Raw::Zlib ;
497497 push (@enc , " gzip" , " x-gzip" );
498498 };
499499 eval {
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ $req->accept_decodable;
1616is( $req -> method, " GET" );
1717is( $req -> uri, " http://www.example.com" );
1818like( $req -> header(" Accept-Encoding" ), qr /\b gzip\b / )
19- ; # assuming IO::Uncompress::Gunzip is there
19+ ; # assuming Compress::Raw::Zlib is there
2020
2121$req -> dump ( prefix => " # " );
2222
You can’t perform that action at this time.
0 commit comments