in reply to Net::Oscar crashes Perl
That question came up before. You're getting the warning because you turned on warnings on someone else's code (by using -w instead of use warnings;). The warning is harmless. It can be fixed by changing
if($^O eq "MSWin32") { eval '*F_GETFL = sub {0};'; eval '*F_SETFL = sub {0};'; eval '*O_NONBLOCK = sub {0}; '; }
to
if($^O eq "MSWin32") { eval '*F_GETFL = sub () {0};'; eval '*F_SETFL = sub () {0};'; eval '*O_NONBLOCK = sub () {0}; '; }
I can't comment on any crashing.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Net::Oscar crashes Perl
by karstenda (Acolyte) on Jan 16, 2009 at 22:45 UTC | |
by ikegami (Patriarch) on Jan 16, 2009 at 23:38 UTC | |
by setebos (Beadle) on Jan 17, 2009 at 16:10 UTC |