Revision history for Perl extension Time::HiRes.
+1.43
+ - add c:/temp to the list of temp directories to probe
+ so that cygwin (and win*?) builds are happy. This was
+ needed at least in my cygwin 1.3.20/w2k setup.
+
1.42
- modernize the constants code (from Nicholas Clark)
for EXTERN.h (either a core perl build, or an installed perl)
had broken (which lead into all test compiles failing with
a core perl build, but thanks to the robustness of Makefile.PL
- nothing of was visible). The brokenness seemed to be caused
- by $ENV{PERL_CORE} not being on for core builds? Now stole
- a trick from the Encode that sets $ENV{PERL_CORE} right, and
- both styles of build should work again.
+ nothing of this was visible). The brokenness seemed to be
+ caused by $ENV{PERL_CORE} not being on for core builds?
+ Now stole a trick from the Encode that sets $ENV{PERL_CORE}
+ right, and both styles of build should work again.
1.40
- Nicholas Clark noticed that the my_catdir() emulation function
my $TMPDIR =
(grep(defined $_ && -d $_ && -w _,
((defined $ENV{'TMPDIR'} ? $ENV{'TMPDIR'} : undef),
- qw(/var/tmp /usr/tmp /tmp))))[0];
+ qw(/var/tmp /usr/tmp /tmp c:/temp))))[0];
$TMPDIR || die "Cannot find writable temporary directory.\n";
}