From: Steve Peters Date: Tue, 1 Jan 2008 23:43:42 +0000 (+0000) Subject: Upgrade to Sys-Syslog-0.24 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=483e88ad226f66ca6deefce55919b08c583c82aa;p=p5sagit%2Fp5-mst-13.2.git Upgrade to Sys-Syslog-0.24 p4raw-id: //depot/perl@32799 --- diff --git a/ext/Sys/Syslog/Syslog.pm b/ext/Sys/Syslog/Syslog.pm index c287233..631f4bc 100644 --- a/ext/Sys/Syslog/Syslog.pm +++ b/ext/Sys/Syslog/Syslog.pm @@ -10,7 +10,7 @@ require 5.005; require Exporter; { no strict 'vars'; - $VERSION = '0.23'; + $VERSION = '0.24'; @ISA = qw(Exporter); %EXPORT_TAGS = ( @@ -771,7 +771,7 @@ Sys::Syslog - Perl interface to the UNIX syslog(3) calls =head1 VERSION -Version 0.23 +Version 0.24 =head1 SYNOPSIS diff --git a/ext/Sys/Syslog/t/syslog.t b/ext/Sys/Syslog/t/syslog.t index c659d1d..3b3a5c0 100755 --- a/ext/Sys/Syslog/t/syslog.t +++ b/ext/Sys/Syslog/t/syslog.t @@ -193,6 +193,9 @@ SKIP: { skip "the 'unix' mechanism works, so the tests will likely fail with the 'stream' mechanism", 10 if grep {/unix/} @passed; + skip "not testing setlogsock('stream'): _PATH_LOG unavailable", 10 + unless -e Sys::Syslog::_PATH_LOG(); + # setlogsock() with "stream" and an undef path $r = eval { setlogsock("stream", undef ) } || ''; is( $@, '', "setlogsock() called, with 'stream' and an undef path" );