You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
IO::Socket gives this error on BeOS:
Your vendor has not defined Socket macro AF_UNIX, used at
/boot/home/config/lib/perl5/5.8.8/BePC-beos/IO/Socket/UNIX.pm line 18
The fix is in IO/Socket.pm at line 22.
Old code:
require IO::Socket::UNIX if ($^O ne 'epoc' && $^O ne 'symbian');
New code:
require IO::Socket::UNIX if ($^O ne 'epoc' && $^O ne 'symbian' && $^O ne
'beos');
Migrated from rt.cpan.org#53837 (status was 'new')
Requestors:
From [email protected] on 2010-01-20 13:22:23:
From [email protected] on 2010-08-26 17:02:00:
From [email protected] on 2011-01-02 22:05:06:
The text was updated successfully, but these errors were encountered: