summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* morphology: disable parallel buildbaserock/richardmaw/S8255/perl-no-parallel-buildRichard Maw2013-07-021-0/+4
| | | | | It causes non-deterministic build failures. While most have been seen on ARM, it can happen on other architectures.
* Convert morphology to YAMLRichard Maw2013-07-021-13/+20
|
* perl.morph: install script libraries in sharerm/noversionpathRichard Maw2012-04-241-1/+1
|
* perl.morph: set all install path optionsRichard Maw2012-04-241-1/+1
| | | | | | | Install perl and its libraries into the usual places, make no distinction between site, vendor and core. This needs to be kept in sync with perl build systems as otherwise it may not be able to find modules
* perl.morph: assume PREFIX is set, set lib pathsRichard Maw2012-04-241-1/+1
| | | | | | | | sitelib usually includes the version number, sitearch includes the architecture as well. We don't need this as we will only ever have one version of perl installed on a system and different chunks are needed for different architectures anyway.
* perl.morph: use prefix if availableRichard Maw2012-03-141-1/+1
|
* DESTDIR change in installAdnan Ali2012-01-311-1/+1
|
* Add perl.morphRichard Maw2012-01-111-0/+13
| | | | This is approximately the same version as linux from scratch
* Copy perlhist.pod from blead to maint-5.14smoke-me/maint-5.14-oldDave Rolsky2011-12-211-1/+11
|
* Create perldelta for 5.14.3Florian Ragwitz2011-09-2611-128/+513
|
* Add 5.14.2 to perlhistv5.14.2Florian Ragwitz2011-09-261-0/+1
|
* Delete some empty perldelta sectionsFlorian Ragwitz2011-09-211-40/+0
|
* Fix pod syntax in perldeltaFather Chrysostomos2011-09-201-1/+1
|
* perl5123delta: should have NAME perl5123deltaKarl Williamson2011-09-191-1/+1
|
* Remove the RC1 markerFlorian Ragwitz2011-09-191-1/+0
|
* Bump version to RC1v5.14.2-RC1Florian Ragwitz2011-09-191-0/+1
|
* Add 5.14.2-RC1 to perlhistFlorian Ragwitz2011-09-191-0/+1
|
* Update Module::CoreList for 5.14.2Florian Ragwitz2011-09-191-10/+668
|
* Acknowledgements in perldeltaFlorian Ragwitz2011-09-191-3/+4
|
* /aa and \b fail under some utf8 stringsKarl Williamson2011-09-152-3/+4
| | | | | This was due to my failure to realize that this 'if' needed to be updated when the /aa modifier was added.
* Panic with \b and /aaKarl Williamson2011-09-083-3/+12
| | | | | This was due to my oversight in not fixing this switch statement to accommodate /aa when it was added.
* Note that PERL_GLOBAL_STRUCT is brokenFlorian Ragwitz2011-09-081-0/+22
|
* In Glob.xs, use memset() instead of bzero()Nicholas Clark2011-09-071-1/+1
| | | | 3c97495f56fb647c used bzero(), which isn't available on some platforms.
* Perldelta for the CPAN updatesFlorian Ragwitz2011-09-071-0/+14
|
* Bump CPAN{,::Distribution}::VERSION after MYMETA/configure_requires fixesFlorian Ragwitz2011-09-072-2/+2
|
* Changed read_meta to ignore dynamic_configDavid Golden2011-09-051-6/+4
| | | | | | | | | Because read_meta is also used to read META.* for configure_requires, it must not return undef when dynamic_config is true. Instead, the caller of read_meta must check dynamic_config when appropriate. This is an API change, but as this is a new function, I think getting correct semantics is more important than preserving back compatibility.
* configure_requires should only check METADavid Golden2011-09-051-3/+4
| | | | | | | It should not check MYMETA if for some reason configure_requires is checked again after MYMETA has been created. This patch adds a regex filter to the check for the meta file.
* Perldelta for the CVE-2011-2939 fixFlorian Ragwitz2011-09-051-0/+11
|
* Backport the CVE-2011-2939 fix for EncodeFlorian Ragwitz2011-09-052-2/+5
|
* Perldelta for the PerlIO::scalar COW fixFlorian Ragwitz2011-09-051-0/+7
|
* Get PerlIO::scalar to write to COWsFather Chrysostomos2011-09-053-3/+12
|
* Fix a perldelta pod nitFlorian Ragwitz2011-09-051-3/+7
|
* Perldelta for read-only glob copiesFlorian Ragwitz2011-09-051-0/+5
|
* Make it possible to have read-only glob copiesFather Chrysostomos2011-09-052-2/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (aka Fun with Hash::Util) This script gives ‘Modification of a read-only value’: use Hash::Util lock_value; *foo::; # autovivify lock_value %::, foo::::; *foo:: = []; So far so good. That’s to be expected. But this one crashes: use Hash::Util lock_value; $a{h} = *foo; lock_value %a, h; $a{h} = []; Under debugging builds, it gives assertion failures. Anyone who knows how the flags work will see immediately what’s wrong, but for the sake of those who don’t: The SVf_FAKE flag is set on a copy of a typeglob, meaning that assign- ing something other than a glob to it will overwrite the glob, instead of writing to one of its slots. The SVf_FAKE flag on a read-only (SVf_READONLY-flagged) string means that it’s not actually read-only, but a copy-on-write string. SVf_READONLY on a glob means that you can’t even assign *through* it. See the first Hash::Util example above. The crashing occurs when the two flags are combined. sv_force_normal_flags assumes that anything marked fake AND read-only is a copy-on-write string, so it proceeds to gut it, even if it’s actually just corrupting a glob. So this commit changes that check to take typeglobs into account.
* Fix a skip count in base's t/fields.tFlorian Ragwitz2011-09-051-1/+1
|
* Allow restricted hashes containing COWs to be clearedFather Chrysostomos2011-09-052-3/+6
|
* Perldelta for deleting COWs in restricted hashesFlorian Ragwitz2011-09-051-0/+6
|
* Allow COW values to be deleted from restricted hashesFather Chrysostomos2011-09-052-2/+9
| | | | I wonder how many other things a604c75 broke....
* Perldelta for the tied COW string localisation fixFlorian Ragwitz2011-09-051-0/+5
|
* Stop localised ties from becoming ro when COWFather Chrysostomos2011-09-052-1/+17
|
* move "garbage collection" glossary entry where it belongsPau Amma2011-09-051-6/+6
|
* Add Pau Amma to AUTHORSFather Chrysostomos2011-09-051-0/+1
|
* Perldelta entry for the utf8::decode COW fixFlorian Ragwitz2011-09-051-0/+6
|
* 2nd try: [perl #91834] utf8::decode does not respect copy-on-writeFather Chrysostomos2011-09-052-1/+15
| | | | | | I reverted the first version of this patch because I put the if() statement before a declaration. I did a revert, rather than a correc- tion, to make back-porting easier.
* perldelta entry for File:Glob / CVE-2011-2728 fix.Craig A. Berry2011-09-041-2/+13
|
* Plug segfault in bsd_glob() with unsupported ALTDIRFUNC flag.Craig A. Berry2011-09-043-2/+9
| | | | | | | | | First, disable all the unsupported flags just to make sure they aren't triggering something they shouldn't be. Also, zero the pglob struct before passing to bsd_glob(); it contains function pointers, and it's safest if they are null rather than containing random stack data. Bug reported by Clément Lecigne <clemun@gmail.com>.
* Perldelta for the Carp memory leak fixFlorian Ragwitz2011-08-261-0/+6
|
* [perl #97020] Carp (actually caller) leaking memoryFather Chrysostomos2011-08-264-4/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Commit eff7e72c3 (Detect incomplete caller overrides in Carp) used this little trick for detecting a @DB::args that an overridden caller() failed to set: + @args = \$i; # A sentinal, which no-one else has the address of But there is a bug in caller(). The first time caller tries to write to @DB::args, it calls Perl_init_dbargs first. That function checks whether @DB::args is AvREAL, in case someone has assigned to it, and takes appropriate measures. But caller doesn’t bother calling Perl_init_dbargs more than once. So manually-assigned items in @DB::args would leak, starting with the *second* call to caller. Commit eff7e72c3 triggered that bug, resulting in a regression in Carp, in that it started leaking. eff7e72c3 was backported to 5.12.2 with commit 97705941a4, so in both 5.12 and 5.14 Carp is affected. This bug (the caller bug, not Carp’s triggering thereof) also affects any caller overrides that set @DB::args themselves, if there are alternate calls to the overridden caller and CORE::caller. This commit fixes that by changing the if (!PL_dbargs) condition in pp_caller to if (!PL_dbargs || AvREAL(PL_dbargs)). I.e., if @args is either uninitialised or AvREAL then call Perl_init_dbargs. Perl_init_dbargs also has a bug in it, that this fixes: The array not only needs AvREAL turned off, but also AvREIFY turned on, so that assignments to it that occur after its initialisation turn AvREAL back on again. (In fact, Larry Wall added a comment suggesting this back in perl 5.000.)
* perldelta for 86212507Ricardo Signes2011-08-261-0/+5
|
* Perldelta for the unpack "U*" fixFlorian Ragwitz2011-08-261-0/+6
|