mps wrote: > Here's the problem: A C-style comment and maybe a missing semicolon. If > I replace > > Code: -------------------- > > # Load the handler when requested.. > my $handler = $class->loadURLHandler($url) > // $class->loadHandler($protocol); > -------------------- > > > with > > Code: -------------------- > > # Load the handler when requested.. > my $handler = $class->loadURLHandler($url); > # $class->loadHandler($protocol); > -------------------- > > > it runs further. Unfortunately, it seems to have dropped all my > plugins (I use the Erland plugins extensively), so I have to figure > out how to add back in (As I mentioned elsewhere in this thread, > ReadNAS' SSL seems old and Erland plugins don't advertise support for > 8.0).
Not a C comment but a the Perl defined OR operator "//" . The "//" operator is only supported in Perl 5.10 onwards and not in Perl 5.8 ------------------------------------------------------------------------ bpa's Profile: http://forums.slimdevices.com/member.php?userid=1806 View this thread: http://forums.slimdevices.com/showthread.php?t=113274 _______________________________________________ Squeezecenter mailing list [email protected] http://lists.slimdevices.com/mailman/listinfo/squeezecenter
