From: Jarkko Hietaniemi Date: Fri, 25 Apr 2003 07:06:49 +0000 (+0000) Subject: Upgrade to Time::HiRes 1.46. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=25ca0970a6814bd165e4cfa83825421bd1aa9ec1;p=p5sagit%2Fp5-mst-13.2.git Upgrade to Time::HiRes 1.46. p4raw-id: //depot/perl@19329 --- diff --git a/ext/Time/HiRes/Changes b/ext/Time/HiRes/Changes index b55b848..f945296 100644 --- a/ext/Time/HiRes/Changes +++ b/ext/Time/HiRes/Changes @@ -1,9 +1,20 @@ Revision history for Perl extension Time::HiRes. +1.46 + - do not create files in blib directories under core + (perl change #19160, from rgs) + - detypo s/VTLARM/VTARLM/ (perl change #19328, from mjd) + +1.45 + - guarantee that $xdefine in HiRes.t is always defined + (perl change #19109, from IlyaZ) + - a cleaner way to detect PERL_CORE (perl change #19111, + from IlyaZ) + 1.44 - add hints/irix.pl to turn off overly POSIX flags that cause hide struct timespec to be hidden (and compilation - to fail) + to fail) (bleadperl change #19085) - documentation tweaks 1.43 diff --git a/ext/Time/HiRes/HiRes.pm b/ext/Time/HiRes/HiRes.pm index c5409d9..7296185 100644 --- a/ext/Time/HiRes/HiRes.pm +++ b/ext/Time/HiRes/HiRes.pm @@ -15,7 +15,7 @@ require DynaLoader; d_usleep d_ualarm d_gettimeofday d_getitimer d_setitimer d_nanosleep); -$VERSION = '1.44'; +$VERSION = '1.46'; $XS_VERSION = $VERSION; $VERSION = eval $VERSION; diff --git a/ext/Time/HiRes/Makefile.PL b/ext/Time/HiRes/Makefile.PL index aed03d9..1fea0de 100644 --- a/ext/Time/HiRes/Makefile.PL +++ b/ext/Time/HiRes/Makefile.PL @@ -48,8 +48,8 @@ sub my_updir { BEGIN { eval { require File::Spec }; if ($@) { - *File::Spec::catdir = \&my_catdir; - *File::Spec::updir = \&my_updir; + *File::Spec::catdir = \&my_catdir; + *File::Spec::updir = \&my_updir; *File::Spec::catfile = \&my_catfile; } }