summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Explain why -Duserelocatableinc isn't compatible with -Duseshrplibv5.12.0-RC0Rafael Garcia-Suarez2010-03-201-0/+4
|
* Don't encourage using Safe in perlsecRafael Garcia-Suarez2010-03-181-3/+8
|
* Add more internal files and directories to no_index in META.ymlNicholas Clark2010-03-182-2/+9
| | | | | This prevents search.cpan.org finding and formatting template and internal documentation. Fixes RT #73632.
* Merge branch 'blead' of ssh://perl5.git.perl.org/gitroot/perl into bleadJesse Vincent2010-03-171-1/+10
|\ | | | | | | | | | | * 'blead' of ssh://perl5.git.perl.org/gitroot/perl: A couple of additions to perl5120delta Add a comma to the number "3000"
| * A couple of additions to perl5120deltaVincent Pit2010-03-171-0/+9
| |
| * Add a comma to the number "3000"Leon Brocard2010-03-171-1/+1
| |
* | Attached are two TODO patches for the remaining test failures on VMS.Craig A. Berry2010-03-172-4/+12
|/ | | | If these can go in for 5.12.0, I'd appreciate it.
* A typo in my last Module::CoreList update caused the deprecated hash keyJesse Vincent2010-03-161-0/+1
| | | | alias for 5.11 to vanish. This commit corrects it
* Clarify libgdbm use on AIXRainer Tammer2010-03-161-3/+3
|
* Update Windows specific changesJan Dubois2010-03-161-28/+67
|
* Order platform specific changes alphabetically by platformJan Dubois2010-03-151-53/+91
|
* Note that forbidding keywords as labels is controversialJan Dubois2010-03-151-1/+3
|
* Add Porting/corelist-diff to MANIFESTH.Merijn Brand2010-03-151-1/+2
|
* Updated AUTHORS file to be current with checkAUTHORS outputJesse Vincent2010-03-141-0/+1
|
* several typos in perldeltaJesse Vincent2010-03-141-3/+3
|
* feature.pm needed to be taught about "use feature ':5.12'"Jesse Vincent2010-03-143-3/+4
|
* perldelta updated for new version of Module::CoreListJesse Vincent2010-03-141-1/+1
|
* Module::CoreList bumped to 2.27 and updated with versions of thingsJesse Vincent2010-03-143-7/+644
| | | | we'll ship in 5.12.0
* Added placeholder for RC0 in perlhistJesse Vincent2010-03-141-0/+1
|
* README updates for 5.12.0Jesse Vincent2010-03-141-4/+4
|
* The "right" perldelta is now 5.12.0'sJesse Vincent2010-03-141-2/+2
|
* Update patchlevel.h to note that this is RC0 and not yet a real releaseJesse Vincent2010-03-141-0/+1
|
* Bump to 5.12.0Jesse Vincent2010-03-1423-169/+169
|
* perldelta typo caught by KarlJesse Vincent2010-03-141-1/+1
|
* A few small fixes to perl5120delta.podKarl Williamson2010-03-141-7/+7
|
* Left a debugging statement in a Porting tool. Oops!Jesse Vincent2010-03-141-2/+0
|
* Remove TODO section from perldeltaJesse Vincent2010-03-141-4/+0
|
* Further updates to perldelta:Jesse Vincent2010-03-142-68/+550
| | | | rewrapping and module list updates
* Add the author list for 5.12.0Jesse Vincent2010-03-141-4/+52
|
* Update Perl 5.12.0 delta. It needs a spellcheck, proofreading and a module list.Jesse Vincent2010-03-141-708/+514
|
* better perl version output in corelist-diffRicardo Signes2010-03-141-3/+3
|
* tool to produce corelist diffsRicardo Signes2010-03-141-0/+26
|
* pod cleanupJesse Vincent2010-03-131-15/+18
|
* Some copyediting perldelta. Pulled in .11.5 deltaJesse Vincent2010-03-131-233/+363
|
* Revive threaded builds for AIXH.Merijn Brand2010-03-131-0/+1
| | | | | | | If random_r is disabled, so should srandom_r be. Changes in a distant caused errors like: "reentr.h", line 773.16: 1506-007 (S) "struct random_data" is undefined.
* In Perl_sv_compile_2op(), remove a suggestion to merge code with pp_entersub.Nicholas Clark2010-03-131-1/+8
| | | | Add a comment explaining the problems with this function.
* Use POD references to documentation when possible.Tom Hukins2010-03-125-7/+7
|
* Use simpler language.Tom Hukins2010-03-123-3/+3
|
* Use POD-style references in the "SEE ALSO" section.Tom Hukins2010-03-121-1/+1
|
* Use POD-style referencesTom Hukins2010-03-121-2/+2
|
* Tighten the ropes on sGMTIME_min for HP-UX 11.00H.Merijn Brand2010-03-121-2/+2
| | | | | | The original long-running test had a tighter limit for sGMTIME_min and sLOCALTIME_min than the 2**47-1 limit that was now hardcoded. Take the safe route.
* [perl# 73490] Bump Time::Piece to a devel release that's newer than whatJesse Vincent2010-03-112-3/+3
| | | | | | | was in Blead but is old than the current updated CPAN release. Comment out a now deprecated 'use UNIVERSAL' line to prevent warnings from production code. It's bad form to ship software that deprecates things and then keeps using them and warning. Thanks to xdg++ for the spotting.
* Clarify that patching deprecate.pm is intended to facilitate a staged ↵Nicholas Clark2010-03-111-1/+5
| | | | transition.
* Describe the limitations and pitfalls of @DB::args.Nicholas Clark2010-03-111-0/+14
|
* Fix stringification assumption bug in overload.t, revealed by ia64-linux-ld.Nicholas Clark2010-03-111-2/+2
| | | | | | | | | | | | | | | | | | | | | | Specifically: 1: / returns and NV where possible, only returning an integer if the dividend is an integer larger than an NV can represent accurately, and integer division is exact (ie no fractional part/remainder). 2: The test is performing $ref/1, intending it to be an identity operation on the numeric value of the reference. 3: The test assumes that the return result of the division will be a number that stringifies identically to the integer value of the reference. The fails if both: 1: The system memory map is such that addresses are very large (ia64 does) 2: NVs are large enough to hold these addresses because then the address becomes converted to an NV which has sufficient decimal digits that stringification defaults to scientific notation. Itanium Linux users the world over will be cheering because they can now compile Perl with long doubles with confidence that all tests pass.
* remove gv_try_downgrade from the public APIDavid Mitchell2010-03-112-1/+5
| | | | it's a recently added function, so removing it now does no harm.
* Limit HP-UX 11.00 time to 48 bit in 64bit modeH.Merijn Brand2010-03-111-1/+9
|
* Re-TODO one more Deparse testRafael Garcia-Suarez2010-03-111-1/+2
| | | | (was missing from 0fa4a26596a4646f9aae1dcd199a2f30933e6f01)
* Note that can be warned on implicit utf8 upgradeKarl Williamson2010-03-111-1/+2
| | | | | | | | The module encoding::warnings can be used to warn when two strings are concatenated where one is utf8 and the other is not and contains non-ASCII. Note the existence of this in the pod documentation.
* revert const deparsing in Deparse.pmDavid Mitchell2010-03-102-28/+8
| | | | | | | | | | | The code was added in 5.11.0 by 2990415a4519bc3988d7224ae15100c3e9e901ee 805b10112885d8868f21f8e860792d65e1e6c19d but causes a big slowdown on most deparsing, due to the need to walk the entire package tree looking for constant subs. For more details, see [perl #73052] Storable considerably slower at storing coderefs