in reply to PP packaging Mechanize problem
Actually, your problem is not with WWW::Mechanize, but with HTML::DOM respectively HTML::DOM::Interface.
Looking at line 83, I see the following code:
... # (which was just hack after hack), but is now maintained manually +. 0 and q r =for ; our @EXPORT_OK = qw/METHOD VOID READONLY BOOL STR NUM OBJ TYPE/; ...
Which seems to be a weird "comment block" commenting between the q r and the =for line. I don't know why this triggers a Perl error, but it might be that your (unstated) version of Perl copes differently with the POD directives, or some preprocessing part of PAR strips the POD and thus wrongly messes up the code.
If you strip out these three lines, you should get a different error or it should work.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: PP packaging Mechanize problem
by ikegami (Patriarch) on Oct 12, 2008 at 13:10 UTC | |
by Corion (Patriarch) on Oct 12, 2008 at 14:19 UTC |