X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=perl%2FMsg.pm;h=5aef961ee4f4162593228d0c1abd71a41dd52fef;hb=60bd15a823797c01182ebfb8b6b3a5bf10065b42;hp=63383cdafe5a5d9c2de57dfa2752098827ccebe3;hpb=b3e4b6b3dfd3a305315eeecdb19ec1e7dfcf268b;p=spider.git diff --git a/perl/Msg.pm b/perl/Msg.pm index 63383cda..5aef961e 100644 --- a/perl/Msg.pm +++ b/perl/Msg.pm @@ -53,13 +53,16 @@ BEGIN { require Errno; Errno->import(qw(EAGAIN EINPROGRESS EWOULDBLOCK)); }; - eval { - require Socket; Socket->import(qw(IPPROTO_TCP TCP_NODELAY)); - }; - if ($@ && !$^O =~ /^MS/) { - dbg("IPPROTO_TCP and TCP_NODELAY manually defined"); - eval '*IPPROTO_TCP = sub { 6 };'; - eval '*TCP_NODELAY = sub { 1 };'; + unless ($^O eq 'MSWin32') { + if ($] >= 5.6) { + eval { + require Socket; Socket->import(qw(IPPROTO_TCP TCP_NODELAY)); + }; + } else { + dbg("IPPROTO_TCP and TCP_NODELAY manually defined"); + eval 'sub IPPROTO_TCP { 6 };'; + eval 'sub TCP_NODELAY { 1 };'; + } } # http://support.microsoft.com/support/kb/articles/Q150/5/37.asp # defines EINPROGRESS as 10035. We provide it here because some