* Noteworthy changes in release ?.? (????-??-??) [?]
** Backward incompatibilities
+
+*** Autoconf now requires perl 5.8 (2002) or later.
+ Generated 'configure' scripts continue to run without perl.
+
** New features
** Obsolete features and new warnings
** Notable bug fixes
+*** Autoconf caches now use finer-grained timestamps.
+
+ Autoconf now uses floating-point numbers rather than integers to
+ represent cache file timestamps, thus avoiding some problems where
+ automake incorrectly decides not to regenerate stale caches.
+
* Noteworthy changes in release 2.71 (2021-01-28) [stable]
** Bug fixes, including:
Anders Kaseorg andersk@MIT.EDU
Andreas Buening andreas.buening@nexgo.de
Andreas Jaeger aj@suse.de
+Andreas K. Hüttel dilfridge@gentoo.org
Andreas Schott schott@rzg.mpg.de
Andreas Schwab schwab@linux-m68k.org
Andreas Waechter andreasw@watson.ibm.com
$atime,$mtime,$ctime,$blksize,$blocks) = stat ($file)
or fatal "cannot stat $file: $!";
+ # Unfortunately Time::HiRes converts timestamps to floating-point, and the
+ # rounding error can be several nanoseconds for circa-2021 timestamps.
+ # Perhaps some day Perl will support accurate file timestamps. For now, do
+ # the best we can without going outside Perl.
+
return $mtime;
}