| Commit message (Collapse) | Author | Age |
|
|
|
|
|
|
|
|
|
| |
removed one that no longer exists in perl-5.38.2
updated one patch
fixed missing builtin.pm
Signed-off-by: Andy Syam <privasisource@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
removed some sources to download perl. I believe I only need one source to download perl at https://www.cpan.org/src/5.0. I see some Linux distributions use that source to download.
change the position of PKG_MAINTAINER to make it neater and prettier
perform a patch refresh
removes some patches that have been applied in perl-5.38.0 as well as patches that are no longer used in perl-5.38.0
added one patch Perl/perl5@ba6e2c3 this fixes the issue regcomp*.c, regexec.c - fixup regex engine build under -Uusedl
provided updates and synchronized libc.config base.config version.config to perl-5.38.0
removed deprecated arybase in perl-5.29.4
Signed-off-by: Andy Syam <privasisource@gmail.com>
|
|
|
|
|
|
| |
Required by sifiveu and upcoming riscv targets.
Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
|
|
|
|
|
|
| |
Needed by the QoriQ target.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
|
|
|
|
|
| |
Signed-off-by: Alexander Ryzhov <github@ryzhov-al.ru>
Signed-off-by: Rosen Penev <rosenp@gmail.com>
|
|
|
|
|
|
| |
Compilation otherwise fails building for MIPS Malta 64-bit LE.
Signed-off-by: Tony Ambardar <itugrok@yahoo.com>
|
|
|
|
| |
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
|
|
|
|
|
|
|
|
|
| |
Looking at Configure and Porting/config.sh, it seems that Perl
requires both of these options to build correctly.
Should fix FS #1464.
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
|
|
|
|
|
|
|
|
|
|
| |
Refresh patches 900 and 910.
Add fix (920) for improperly gated variable.
Add workaround (020) for Storable's run-time check for stacksize.
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
|
|
|
|
| |
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
|
|
|
|
|
|
|
| |
Because nonexistent aarch64.config the build of perl will fail for ARM
64-bit targets. Fix it by adding mentioned config. Fixes #2963.
Signed-off-by: Tomasz Maciej Nowak <tomek_n@o2.pl>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Required changes:
* Add qualifying '.' to scripts or to @INC, as appropriate since we're
enabling default_inc_excludes_dot;
* Add new platform/library definitions like double-double format and
locale library functions/headers;
* Delete patch 020 as it's been upstreamed;
Optional changes:
* Instead of using -@rm and having that fail, emit an error message,
and be ignored, just use @rm -f instead which will always succeed.
Security
[CVE-2017-12837] Heap buffer overflow in regular expression compiler
Compiling certain regular expression patterns with the case-insensitive
modifier could cause a heap buffer overflow and crash perl. This has
now been fixed. [perl #131582]
[CVE-2017-12883] Buffer over-read in regular expression parser
For certain types of syntax error in a regular expression pattern, the
error message could either contain the contents of a random, possibly
large, chunk of memory, or could crash perl. This has now been fixed.
[perl #131598]
[CVE-2017-12814] $ENV{$key} stack buffer overflow on Windows
A possible stack buffer overflow in the %ENV code on Windows has been
fixed by removing the buffer completely since it was superfluous anyway.
[perl #131665]
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
|
|
|
|
|
|
|
| |
The standard way to pass -rdynamic (or -Wl,--dynamic-export) is via
the $ccdlflags variable. Do what is best practice.
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
|
|
|
|
|
|
|
| |
Originally as PR #2383 but rewritten.
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
Signed-off-by: Alexander Ryzhov <openwrt@ryzhov-al.ru>
|
|
|
|
| |
Signed-off-by: Michail Frolov <frolovm@pobox.com>
|
|
|
|
| |
Signed-off-by: Stefan Weil <sw@weilnetz.de>
|
|
|
|
| |
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
|
|
|
|
|
| |
This was previously manually set to '4.8.0'. Aside from just being incorrect,
it also breaks Errno's GCC5 detection.
Fixes #2044.
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
| |
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
|
|
|
| |
- Add some useful options for debugging tests and test failures
- Properly handle tests located in lib/
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
|
|
|
| |
This needs to be a concatenation of {nonxs,dynamic,static}_ext, as
shown by Config/Extensions.t.
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
While setlocale() is present, musl currently doesn't provide a suitable implementation.
It'll silently accept every locale, even if not present at all, defaulting them
to C.UTF-8. This will confuse applications as well as our testsuite(see lib/locale.t).
Even if a locale does exist, it's effects will not apply to an extent that will
satisfy many applications.
Avoid further mischief here and just disable setlocale() for now.
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
|
|
|
|
|
|
|
|
| |
This replaces the previously used collection of configuration files for every single
architecture in conjunction with hacky overrides, which became an increasing burden to maintain.
Fixes a number of outstanding bugs and oddities, with the most important one being the
previously wrong signal order(as shown by ext/POSIX/t/sigaction.t).
See files/perlconfig.pl's POD and files/README.config for details.
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
| |
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
|
|
| |
This will simplify updating the package in the future.
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
|
|
| |
Fixes broken largefile support.
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
| |
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
| |
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
| |
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
| |
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
| |
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
| |
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
| |
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
| |
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
| |
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
| |
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
|
|
|
|
| |
And also remove all other references to avoid confusion.
libnsl isn't really needed. Removing it allows glibc based
toolchains to build perl.
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
|
|
|
|
| |
Type signedness is undefined for char. char may actually be unsigned for
some CPUs.
This fixes various bugs on PPC, like negative array indices.
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
|
|
| |
They're broken anyway
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
| |
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
| |
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
|
|
|
|
| |
Type signedness is undefined for char. char may actually be unsigned for
some CPUs.
This fixes various bugs on ARM, for example negative array indices.
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
| |
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
|
|
| |
environment
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
| |
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
| |
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
| |
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
| |
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
| |
Signed-off-by: Marcel Denia <naoir@gmx.net>
|
|
|
|
| |
Signed-off-by: Marcel Denia <naoir@gmx.net>
|