> From: Brian Bevins [mailto:[EMAIL PROTECTED]
> And so on. All the tests fail complaining that '"import" is
> not exported by the Exporter module". This is because Tk.pm
> inlcudes the following line:
>
> use Exporter ('import');
>
> But the Exporter did not have an import method until perl
> 5.8.3. This is not a bug with Tcl::Tk. It's just that our
> perl is too old. I had to go back to Tcl::Tk 0.91 to find one
> that didn't have that line, but instead had just:
>
> use Exporter;
I've looked into CVS (which is hosted at
http://tcltkce.cvs.sourceforge.net/tcltkce/TclTk/ BTW) and realized that it was
me who added this offending ("import")
It is not needed, and I guess it was accidental.
>
> So that works even with our perl 5.8.2. I honestly don't
> think there is anything that you need to do here. We just
5.8.2 is not old enough. Perl version 5.6.1 was not checked for a long time,
but it is actually supported - you can have Tcl/Tk 8.5 on perl 5.6.1
> need to move to a newer version of perl. Maybe Tcl::Tk
> doesn't really need Exporter::import, so that dependency
> could be removed, but I would guess that it was added for a reason.
BR,
Vadim.