p4raw-id: //depot/perl@18339
Revision history for Perl extension Time::HiRes.
+1.39
+ - fix from Craig Berry for better building in VMS with PERL_CORE
+
1.38
- no functional changes
- move lib/Time/HiRes.pm as Hires.pm
d_usleep d_ualarm d_gettimeofday d_getitimer d_setitimer
d_nanosleep);
-$VERSION = '1.38';
+$VERSION = '1.39';
$XS_VERSION = $VERSION;
$VERSION = eval $VERSION;
my $ccflags = $Config{'ccflags'} . ' ' . "-I$COREincdir";
if ($^O eq 'VMS') {
if ($ENV{PERL_CORE}) {
- $cccmd = "$Config{'cc'} /include=([---]) $tmp.c";
+ # Fragile if the extensions change hierachy within
+ # the Perl core but this should do for now.
+ $cccmd = "$Config{'cc'} /include=([---]) $tmp.c";
} else {
my $perl_core = $Config{'installarchlib'};
$perl_core =~ s/\]$/.CORE]/;