Hi,
Just noticed that I can no longer compile a Tk program using pp on my Mac. (parl os OK)
>perl -v This is perl, v5.8.1-RC3 built for darwin-thread-multi-2level (with 1 registered patch, see perl -V for more detail)
perl/Tk VERSION 804.027
PAR VERSION 0.85
However I have another machine as above except it has PAR 0.79 and this works OK so something between 0.79 and 0.85 is causing the Mac a problem.
#!/usr/bin/perl use strict; use Tk;
my $mw = MainWindow->new;
$mw->title('Hello World');
$mw->Button(-text => 'QUIT',
-command => sub {exit 0;})->pack;MainLoop;
PAR 0.79 produces 4176818 bytes PAR 0.85 produces 4220958 bytes
Any ideas?
Regards David Greenlee
