summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorSteve Peters <steve@fisharerojo.org>2005-10-18 10:52:01 +0000
committerSteve Peters <steve@fisharerojo.org>2005-10-18 10:52:01 +0000
commit9649b81b974723b45fde1b99b473c7d475db6cbd (patch)
treec71bb9928cd6c6ea2e2fc9c61f3413b9921ec532 /ext
parent33c3d051af81e78e549ef2f4715e9d0b43e5850f (diff)
downloadperl-9649b81b974723b45fde1b99b473c7d475db6cbd.tar.gz
Upgrade to Time-HiRes-1.75
p4raw-id: //depot/perl@25789
Diffstat (limited to 'ext')
-rw-r--r--ext/Time/HiRes/Changes4
-rw-r--r--ext/Time/HiRes/HiRes.pm2
-rw-r--r--ext/Time/HiRes/Makefile.PL2
3 files changed, 6 insertions, 2 deletions
diff --git a/ext/Time/HiRes/Changes b/ext/Time/HiRes/Changes
index b034efd168..8c25a10dec 100644
--- a/ext/Time/HiRes/Changes
+++ b/ext/Time/HiRes/Changes
@@ -1,5 +1,9 @@
Revision history for Perl extension Time::HiRes.
+1.75 [2005-10-18]
+ - installation patch from Gisle Aas: in Perls 5.8.x and later
+ use MakeMaker INSTALLDIRS value of 'perl' instead of 'site'.
+
1.74 [2005-09-19]
- [cpan #14608] Solaris 8 perl 5.005_03 File::Spec module does not have method rel2abs
(the workaround is not to use rel2abs, should not be necessary)
diff --git a/ext/Time/HiRes/HiRes.pm b/ext/Time/HiRes/HiRes.pm
index bc1d38dace..1a38b1e46e 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.74';
+$VERSION = '1.75';
$XS_VERSION = $VERSION;
$VERSION = eval $VERSION;
diff --git a/ext/Time/HiRes/Makefile.PL b/ext/Time/HiRes/Makefile.PL
index b2caf92349..386958feb5 100644
--- a/ext/Time/HiRes/Makefile.PL
+++ b/ext/Time/HiRes/Makefile.PL
@@ -448,7 +448,7 @@ sub doMakefile {
'XSOPT' => $XSOPT,
# do not even think about 'INC' => '-I/usr/ucbinclude', Solaris will avenge.
'INC' => '', # e.g., '-I/usr/include/other'
- 'INSTALLDIRS' => 'perl',
+ 'INSTALLDIRS' => ($] >= 5.008 ? 'perl' : 'site'),
'dist' => {
'CI' => 'ci -l',
'COMPRESS' => 'gzip -9f',