Branch: refs/heads/blead
Home: https://github.com/Perl/perl5
Commit: 2ed1779635eb3aa4753692fe81fa0e36ca394980
https://github.com/Perl/perl5/commit/2ed1779635eb3aa4753692fe81fa0e36ca394980
Author: TAKAI Kousuke <[email protected]>
Date: 2023-07-02 (Sun, 02 Jul 2023)
Changed paths:
M Configure
Log Message:
-----------
Configure: prefer %ll over %L for formatting long long ints
Configure used to try %L, %q, and then %ll in this order to find the
modifier for formatting 64-bit integers on 32-bit machines, but %L for
integer conversions seems to be a non-standard GNU extension.
Now it will try %ll before %q, %L to prioritize %ll which is
standardized by C99.