Skip Menu |

This queue is for tickets about the IO CPAN distribution.

Report information
The Basics
Id: 53837
Status: resolved
Priority: 0/
Queue: IO

People
Owner: Nobody in particular
Requestors: njh [...] bandsman.co.uk
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: 1.25
Fixed in: (no value)



Subject: FIx to make IO::Socket work on BeOS
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');
From: njh [...] bandsman.co.uk
I have just tried it in 5.12.1 - the problem still exists.
From: njh [...] bandsman.co.uk
5.12.3 is due soon - it would be great if this fix were to be incorporated.
Ticket migrated to github as https://github.com/toddr/IO/issues/8