Skip to content

Commit

Permalink
Update status of CGI module in perlcore Provides: list
Browse files Browse the repository at this point in the history
  • Loading branch information
dmacks committed May 6, 2015
1 parent 13b89a3 commit b1f0c9a
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion perlmod/Fink/VirtPackage.pm
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,6 @@ END
if ($perlver >= 5.008001) {
push(@modules,
'attribute-handlers',
'cgi',
'data-dumper',
'db',
'devel-peek',
Expand Down Expand Up @@ -311,6 +310,13 @@ END
'time-hires',
'unicode-normalize',
);
if ($perlver < 5.019007) {
push(@modules,
# CGI still present until 5.21.0 but will spew
# deprecation diagnostics every time it's used
'cgi',
);
}
if ($perlver < 5.015000) {
push(@modules,
'devel-dprof',
Expand Down

0 comments on commit b1f0c9a

Please sign in to comment.