Add a message about the LC_ALL=C workaround (for non-core builds);
Jarkko Hietaniemi [Sat, 2 Aug 2003 06:01:27 +0000 (06:01 +0000)]
update Changes.

p4raw-id: //depot/perl@20443

ext/Time/HiRes/Changes
ext/Time/HiRes/Makefile.PL

index 31a42e2..9a8e8af 100644 (file)
@@ -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
index 936f8e9..1226f74 100644 (file)
@@ -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
     }
 }