Skip Menu |

This queue is for tickets about the Java-Swing CPAN distribution.

Report information
The Basics
Id: 21957
Status: new
Priority: 0/
Queue: Java-Swing

People
Owner: Nobody in particular
Requestors: agentzh [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.12
Fixed in: (no value)



Subject: non-portable syntax in example/calc
I don't think example/calc can run on Win32: C:\.cpan\build\Java-Swing-0.12>perl example/calc Class PerlActionListener not found at E:/Perl/site/lib/Inline/Java.pm line 619 And here is my patch for that (according to the syntax in t/04mouse.t): - BEGIN { $ENV{CLASSPATH} .= ':java' } + BEGIN { $ENV{CLASSPATH} .= 'java'; } After applying the patch, calc runs here. Not sure if it's the right thing to do. Cheers, Agent