Upgrade to Time::HiRes 1.46.
Jarkko Hietaniemi [Fri, 25 Apr 2003 07:06:49 +0000 (07:06 +0000)]
p4raw-id: //depot/perl@19329

ext/Time/HiRes/Changes
ext/Time/HiRes/HiRes.pm
ext/Time/HiRes/Makefile.PL

index b55b848..f945296 100644 (file)
@@ -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
index c5409d9..7296185 100644 (file)
@@ -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;
 
index aed03d9..1fea0de 100644 (file)
@@ -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;
     }
 }