summaryrefslogtreecommitdiff
path: root/ext/Time/HiRes
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2003-08-02 06:01:27 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2003-08-02 06:01:27 +0000
commitd7358e6a423c6971725140629ee3e60d938c3458 (patch)
tree71f57492847804fba90f2c9c114d5d77fe8f136d /ext/Time/HiRes
parent19a5c5129806e3fc5fc1a31e8f8f3ce298848b83 (diff)
downloadperl-d7358e6a423c6971725140629ee3e60d938c3458.tar.gz
Add a message about the LC_ALL=C workaround (for non-core builds);
update Changes. p4raw-id: //depot/perl@20443
Diffstat (limited to 'ext/Time/HiRes')
-rw-r--r--ext/Time/HiRes/Changes10
-rw-r--r--ext/Time/HiRes/Makefile.PL4
2 files changed, 14 insertions, 0 deletions
diff --git a/ext/Time/HiRes/Changes b/ext/Time/HiRes/Changes
index 31a42e26c8..9a8e8affb5 100644
--- a/ext/Time/HiRes/Changes
+++ b/ext/Time/HiRes/Changes
@@ -1,5 +1,15 @@
Revision history for Perl extension Time::HiRes.
+1.50
+ - add a message (for non-core builds) to Makefile.PL about
+ the LC_ALL=C workaround
+ - &Time::HiRes::d_nanosleep was broken (perl change #20131)
+ - the nanosleep() probe was broken (perl change #20061)
+ - use existence instead of definedness for feature probes
+ (perl change #20043)
+ - MPE/iX tweak (perl change #20042)
+ - do not use HAS_NANOSLEEP (perl change #19898)
+
1.49
- UVuf for non-IVSIZE platforms (from Keiichiro Nagano)
- OS/2 can always mix subsecond sleeps with signals
diff --git a/ext/Time/HiRes/Makefile.PL b/ext/Time/HiRes/Makefile.PL
index 936f8e9d32..1226f74a6b 100644
--- a/ext/Time/HiRes/Makefile.PL
+++ b/ext/Time/HiRes/Makefile.PL
@@ -444,6 +444,10 @@ sub main {
unless ($ENV{PERL_CORE}) {
print <<EOM;
Now you may issue '$make'. Do not forget also '$make test'.
+
+NOTE: if you get an error like this (line number may vary):
+Makefile:91: *** missing separator
+then set the environment variable LC_ALL to "C" and retry.
EOM
}
}