| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
(cherry picked from commit 6eef26b1c82a35912e0b0e884a71a645d4e7cf20)
|
|
|
|
| |
(cherry picked from commit affe02a96fc1fc4aa88073a4a9aedf6a1488e829)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Improve detection of Intel C/C++ compilers.
My version of Intel C/C++ reports these versions:
✅ starscream% icc -V
Intel(R) C Intel(R) 64 Compiler for applications running on Intel(R) 64, Version 19.1.1.217 Build 20200306
Copyright (C) 1985-2020 Intel Corporation. All rights reserved.
FOR NON-COMMERCIAL USE ONLY
✅ starscream% icpc -V
Intel(R) C++ Intel(R) 64 Compiler for applications running on Intel(R) 64, Version 19.1.1.217 Build 20200306
Copyright (C) 1985-2020 Intel Corporation. All rights reserved.
FOR NON-COMMERCIAL USE ONLY
* simplified case for detecting Intel C++ compiler
* update authors for plicease
(cherry picked from commit 8ffcbbbe4a4411bb0971e61a39fa2608a4ef5145)
|
|
|
|
| |
(manually cherry picked from commit d1bce42ce4c2b5874263b5bc6c4c407812e344b3)
|
|
|
|
| |
(manually cherry picked from commit 1211db3d963005502d6fd60c503cb0003706a3c3)
|
|
|
|
| |
(cherry picked from commit 78cf49c749a641e22c959a4eda2a2956513334f7)
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
On m68k, the natural alignment is 16 bits which causes the opslab_opslot
member of struct opslab to be aligned at a 16-bit offset. Other 32-bit
and 64-bit architectures have a natural alignment of at least 32 bits, so
the offset is always guaranteed to be at least 32-bit-aligned.
Fix this by adding additional padding bytes before the opslab_opslot
member, both for cases when PERL_DEBUG_READONLY_OPS defined and not
defined to ensure the offset of oplab_slots is always 32-bit-aligned.
On architectures which have a natural alignment of at least 32 bits,
the padding does not affect the alignment, offsets or struct size.
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
Fixed quoting and string concatenation mistakes in C++ typemap in perlxs.
Committer: Håkon Hægland is now a Perl author.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
From Changes:
1.3401 2020-04-06
- Add tests for negative and large epochs
- Remove %I tests from 09locales.t
- Exempt more tests unless $ENV{AUTOMATED_TESTING}
- Safeguards around 12-hour time notation
1.34 2020-02-27
- Exempt DST tests unless $ENV{AUTOMATED_TESTING}
- Add recent test files to MANIFEST (openstrike)
Committer: Time-Piece maintainer is now a Perl author
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Fixes #17206
AUTHORS can now be updated by 'Porting/checkAUTHORS.pl' using
the new 'update' action.
Example: perl Porting/checkAUTHORS.pl --update --from=v5.31.6
The changes to the file AUTHORS is better read by ommitting whitespaces.
The changes to AUTHORS are the following:
- authors are sorted
- some emails changed to reflect the preferred email set in the <DATA> section
of checkAUTHORS.pl
When detecting a new author, we will list the GitHub account instead of the email.
Anyone can replace his email by the GitHub account by directly editing AUTHORS file.
Note that the <DATA> section has been adjusted to accomodate several
existing emails in the AUTHORS file to avoid selecting a different email.
'Hio' was listed twice and we preserved the preferred email address.
|
|
|
|
|
|
|
|
| |
Added "repeats strings" in parenthesis to make it more unambiguous.
Santtu Ojanperä is now a Perl author.
For: https://github.com/Perl/perl5/pull/17335
|
|
|
|
|
|
|
|
| |
and not meant to be interpreted as 2070 because of rolling century.
Fixes GH issue 16431
Bernhard M. Wiedemann is now a Perl author.
|
|
|
|
|
|
| |
GitHub issue tracker
The perlbug utility and perlbug@perl.org should no longer be used to submit bug reports or patches.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Typos in documentation and inline comments.
Pursuant to discussion on openbsd-tech list:
https://marc.info/?t=157678644800005&r=1&w=2
https://marc.info/?t=157678570300002&r=1&w=2
For:
https://github.com/Perl/perl5/issues/17379
https://github.com/Perl/perl5/pull/17380
Committer:
Bryan Stenson is now a Perl author.
Regenerate uconfig.sh via: perl regen/uconfig_h.pl
|
|
|
|
|
|
|
|
|
| |
Per commit message by David Mitchell in 142a37fd (Jul 24 2013), the code
changes affecting the performance of $`, $&, $' weren't fully enabled
until 5.20. Hence, the documentation should caution for 5.18 and
earlier.
As reported by peterdd++ in https://github.com/Perl/perl5/pull/17344
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
Use #ifdef instead of #if to avoid warning if a user of this header
file uses the gcc -Wundef option.
Committer: Peter Eisentraut is now a Perl author.
For: RT 134494
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Update AUTHORS to keep make test_porting happy.
|
| |
|
|
|
|
|
|
|
| |
For: RT #131867
Committer: Increment $VERSION in ext/Tie-Hash-NamedCapture/NamedCapture.pm.
Add Vickenty Fesunov to AUTHORS.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
Sentences ending with a parenthetical phrase that ends
with an abbreviation such as 'etc.' still require a period
outside of the parentheses.
See https://english.stackexchange.com/a/23025/306017
For: RT 133820. Christopher Chavez is now a Perl author.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
When building perl with highly parallel options (e.g. -j 32) on a machine
with many cores (e.g. 32) ocassionaly it fails with the following type
of error.
make[1]: Entering directory '.../cpan/podlators'
Can't locate Getopt/Long.pm in @INC (you may need to install the Getopt::Long module) (@INC contains: .../cpan/AutoLoader/lib .../dist/Carp/lib .../dist/PathTools .../dist/PathTools/lib .../cpan/ExtUtils-Install/lib .../cpan/ExtUtils-MakeMaker/lib .../cpan/ExtUtils-Manifest/lib .../cpan/File-Path/lib .../ext/re .../dist/Term-ReadLine/lib .../dist/Exporter/lib .../ext/File-Find/lib .../cpan/Text-Tabs/lib .../dist/constant/lib .../cpan/version/lib .../lib ../../lib .) at .../cpan/ExtUtils-MakeMaker/lib/ExtUtils/Command/MM.pm line 109.
Makefile:445: recipe for target 'manifypods' failed
make[1]: *** [manifypods] Error 2
The scripts pod2man, pod2text, podchecker, podselect, and pod2usage all use
Getopt-Long and since they are all part of nonxs modules this needs to be
added here to prevent these build races.
|
|
|
|
| |
Committer: Add author.
|
| |
|
| |
|
|
|
|
|
|
| |
For: RT # 133380
Committer: Tina Müller is now a Perl AUTHOR.
|
| |
|
|
|
|
|
|
|
|
|
| |
Alexandr Savca is now a Perl AUTHOR.
For: RT #133120
Committer: holding off on the corrections to pod/perlartistic.pod until
clarification of change to license text.
|
| |
|
| |
|