From: Rafael Garcia-Suarez Date: Mon, 27 Jun 2005 12:35:33 +0000 (+0000) Subject: Upgrade to Time::HiRes 1.70 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f8daf111cf97dcea4d3f7a99b328e7928e16363c;p=p5sagit%2Fp5-mst-13.2.git Upgrade to Time::HiRes 1.70 p4raw-id: //depot/perl@24988 --- diff --git a/ext/Time/HiRes/Changes b/ext/Time/HiRes/Changes index 5661bbc..0cc806c 100644 --- a/ext/Time/HiRes/Changes +++ b/ext/Time/HiRes/Changes @@ -1,5 +1,10 @@ Revision history for Perl extension Time::HiRes. +1.70 - oops in 1.69 about @ISA (not affecting anything but silly) + - add copyright 2005 to HiRes.pm + - add copyright and license to HiRes.xs + - add copyrights 2003,2004,2005 to README + 1.69 - actually run a test for nanosleep since e.g. in AIX 4.2 it seems that one can link in nanosleep() but then calling it fails instantly and sets errno to ENOSYS (Not implemented). diff --git a/ext/Time/HiRes/HiRes.pm b/ext/Time/HiRes/HiRes.pm index a14dbb0..88bab3f 100644 --- a/ext/Time/HiRes/HiRes.pm +++ b/ext/Time/HiRes/HiRes.pm @@ -6,7 +6,6 @@ use vars qw($VERSION $XS_VERSION @ISA @EXPORT @EXPORT_OK $AUTOLOAD); require Exporter; require DynaLoader; -@ISA = qw(Exporter DynaLoader); @ISA = qw(Exporter); @EXPORT = qw( ); @@ -16,7 +15,7 @@ require DynaLoader; d_usleep d_ualarm d_gettimeofday d_getitimer d_setitimer d_nanosleep); -$VERSION = '1.69'; +$VERSION = '1.70'; $XS_VERSION = $VERSION; $VERSION = eval $VERSION; @@ -387,7 +386,7 @@ G. Aas Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved. -Copyright (c) 2002,2003,2004 Jarkko Hietaniemi. All rights reserved. +Copyright (c) 2002,2003,2004,2005 Jarkko Hietaniemi. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. diff --git a/ext/Time/HiRes/HiRes.xs b/ext/Time/HiRes/HiRes.xs index f945edb..edc1720 100644 --- a/ext/Time/HiRes/HiRes.xs +++ b/ext/Time/HiRes/HiRes.xs @@ -1,3 +1,13 @@ +/* + * + * Copyright (c) 1996-2002 Douglas E. Wegscheid. All rights reserved. + * + * Copyright (c) 2002,2003,2004,2005 Jarkko Hietaniemi. All rights reserved. + * + * This program is free software; you can redistribute it and/or modify + * it under the same terms as Perl itself. + */ + #ifdef __cplusplus extern "C" { #endif