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.
In reply to Re: Net::Oscar crashes Perl
by ikegami
in thread Net::Oscar crashes Perl
by karstenda
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |