diff options
-rw-r--r-- | CHANGES | 3 | ||||
-rwxr-xr-x | util/fix-pod2html.pl | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,3 +1,6 @@ +* make the build system compatible with HTML::Parser >= 3.64 + --niko, reported as Debian bug #560562 + * update prototype and scriptaculous libraries to make zooming work again on ff3.5, to make it work, make sure to update the basepage.html to include diff --git a/util/fix-pod2html.pl b/util/fix-pod2html.pl index fa51400..ff0176e 100755 --- a/util/fix-pod2html.pl +++ b/util/fix-pod2html.pl @@ -22,7 +22,7 @@ my $p = HTML::Parser->new(api_version => 3); $p->handler(start => \&startsub, 'tagname, text'); $p->handler(end => \&endsub, 'tagname, text'); $p->handler(default => sub { print shift() }, 'text'); -$p->parse_file(shift||"-") or die("parse: $!"); +$p->parse_file(shift||\*STDIN) or die("parse: $!"); my @stack; my $a=0; |