mishandles kill(), and therefore the sigaction test
should be skipped, from Charles Lane.
p4raw-id: //depot/perl@12415
BEGIN{
# Don't do anything if POSIX is missing, or sigaction missing.
+ use Config;
eval { use POSIX; };
- if($@ || $^O eq 'MSWin32' || $^O eq 'NetWare') {
+ if($@ || $^O eq 'MSWin32' || $^O eq 'NetWare' || ($^O eq 'VMS' && !$Config{'d_sigaction'})) {
print "1..0\n";
exit 0;
}