summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* document new package NAMESPACE VERSION syntax in perlfunccode-review/2009-07-22David Golden2009-07-221-1/+8
|
* remove memory leak in Perl_package_versionDavid Golden2009-07-211-0/+1
|
* test VERSION is set as expected; remove speculative ideas in testsDavid Golden2009-07-211-5/+2
|
* first working attempt at setting VERSIONDavid Golden2009-07-217-136/+161
|
* parse 'package NAME VERSION' without syntax errorDavid Golden2009-07-215-727/+713
|
* add tests to show desired package syntax extensionsDavid Golden2009-07-211-1/+23
|
* Another typo, as spotted by Offer Kaye <offer.kaye@gmail.com>.Abigail2009-07-201-1/+1
|
* Typo Fixes in Diagnosticchromatic2009-07-201-2/+2
| | | | Signed-off-by: Abigail <abigail@abigail.be>
* Revert "Test that `use feature' doesn't leak a scalar during s///ee"Josh ben Jore2009-07-202-13/+0
| | | | | | This reverts commit cda5e2ec34321ed347095f583f979be84943ec52 which duplicated something already commited in fa13de9435b2f7be1099b9202ae6e26021b00ba8.
* Test that `use feature' doesn't leak a scalar during s///eeJosh ben Jore2009-07-202-0/+13
|
* minor updates to release_managers_guide.podDavid Mitchell2009-07-201-9/+25
|
* Mention DTrace in INSTALL.David Mitchell2009-07-201-0/+16
| | | | Also explain that a debugging build is slower
* forgot the version Bump - sighYves Orton2009-07-201-1/+1
|
* sync to 1.52_03 (hopefully properly this time)Yves Orton2009-07-202-1/+6
|
* (mostly) sync blead with ExtUtils::Install 1.52_02David Mitchell2009-07-192-3/+28
| | | | (Installed.t still divergent)
* Be sure to find the vmsish pragma for one-liners in exit.t.Craig A. Berry2009-07-191-0/+1
| | | | | | Already in upstream at: http://github.com/schwern/test-more/commit/c842e916e4aa2e34c36afb3a930979d363121236
* bring up to date with ExtUtils-Install v1.52_02Yves Orton2009-07-192-68/+117
|
* mro::method_changed_in(..) ignores AUTOLOAD (RT #60220)Tony Cook2009-07-182-1/+20
| | | | | | | | | | | | | | | | | | | | | | | | | Patch modified to use a boolean rather than an integer for tracking mro changes in S_glob_assign_ref and test fixed not to warn. URL: http://rt.perl.org/rt3/Ticket/Display.html?id=60220 From the bug report: ----------------------------------------------------------------- When creating a subclass dynamically, and when adding AUTOLOAD dynamically into the parent class, then that AUTOLOAD is not seen in the method cache, even after a call to "mro::method_changed_in('Parent')". It only appears in the method cache after a call to mro::invalidate_all_method_caches(). The attached test file demonstrates the problem. This was detected while trying to solve bug 40159 in DBIx::DataModel. ----------------------------------------------------------------- Message-ID: <20081031132021.GA21341@mars.tony.develop-help.com>
* Fix some nits in release_managers_guide.podVincent Pit2009-07-181-6/+4
|
* add extra note about CoreList to release_managers_guide.pod:David Mitchell2009-07-181-0/+5
|
* add info on updating CoreList and tags to release_managers_guide.podDavid Mitchell2009-07-181-9/+64
|
* Provisional update of CoreList for 5.10.1David Mitchell2009-07-181-69/+743
| | | | | (this will be done again just prior to RC1, but I wanted to try it out. $VERSION has been bumped to what it will be for the final release.
* add basic usage info to Porting/corelist.plDavid Mitchell2009-07-181-1/+15
|
* Configure should sort inc_version_listAndy Dougherty2009-07-181-0/+1
| | | | | | | | | | | | | | | | In searching for previous versions of perl, Configure forgets to sort the directories according to version number, so 5.10 sorts later than 5.8. Specifically, without this patch, you'd get something like: inc_version_list='5.8.9 5.8.8 5.10.0/i686-linux 5.10.0' i.e. 5.10.0 would be searched *after* 5.8.8. With this patch, you get something like: inc_version_list='5.10.0/i686-linux 5.10.0 5.8.9 5.8.8'
* Some of the TODOs in switches.t actually work on VMS.Craig A. Berry2009-07-181-0/+6
|
* fix pod2usage2 test for all case-insensitive systemsDavid Mitchell2009-07-181-2/+3
| | | | | | This test, when run from core in t/, finds pod/usage.pod before ../lib/Pod/Usage.pm. Remove '.' from the search path for all core platforms, not just cygwin.
* Fix ExtUtils::Installed failure with -DuserelocatableincDavid E. Wheeler2009-07-182-5/+4
| | | | | | | | | | | | | | This patch fixes an issue with ExtUtils::Installed when Perl is compiled with userelocatableinc. It looks a though the issue is that `%Config` contains local paths when built with -Duserelocatableinc, some, at least, with a leading "./". The solution is to use `File::Spec->canonpath()` to clean up the path before comparing two paths that are otherwise the same. A better solution might be to use some sort of other utility function that checks that paths are the same even if they're not spelled the same. I didn't notice such a function in File::Spec, alas. Also, I'm not sure what effects this change might have on VMS; it deserves further testing there.
* document why SQLite tests are exlcudedDavid Mitchell2009-07-171-1/+4
|
* Allocate XPV* memory using sizeof() and the offset of the first real member.Nicholas Clark2009-07-171-58/+46
| | | | | | | | | | This avoids tripping over alignment differences between X* and x*_allocated, because x*_allocated doesn't have a double in it. Tidy up the documentation in comments. Eliminate relative_STRUCT_OFFSET() as it is no longer used. Eliminate use of xpv_allocated, xpviv_allocated, xpvav_allocated, xpvcv_allocated and xpvfm_allocated, but leave them in the headers as they are publicly visible.
* Eliminate struct regexp_allocated and xpvio_allocated.Nicholas Clark2009-07-174-19/+11
| | | | | | Calculate memory allocation using regexp and XPVIO, and the offset of the first real structure member. This avoids tripping over alignment differences between X* and x*_allocated, because x*_allocated doesn't have a double in it.
* hints/aix.sh remove libgdbm from wanted libs - dbm_store() is defective in ↵Rainer Tammer2009-07-171-0/+7
| | | | the AIX Toolbox
* README.aix for Perl 5.10.1Rainer Tammer2009-07-171-9/+18
|
* Describe changes to Carp and Carp::HeavyRafael Garcia-Suarez2009-07-161-0/+11
|
* Add a version number to B::Lint::DebugRafael Garcia-Suarez2009-07-161-0/+2
|
* No whitespace before comment allowed in VMS make utilities.Craig A. Berry2009-07-162-2/+2
| | | | All extension building was broken without this.
* Additional perlvms.pod updates related to POSIX exit handling.Craig A. Berry2009-07-161-17/+16
|
* URL and other fix-ups for README.vmsCraig A. Berry2009-07-161-21/+15
|
* bump Encode version in Maintainers.plDavid Mitchell2009-07-161-1/+1
|
* overloading.pm will work with 5.10.1David Mitchell2009-07-161-1/+1
|
* Note that editing pod.list then running pod/buildtoc automates these tasks.Nicholas Clark2009-07-161-4/+8
|
* patch submission(AUTHORS)Adam Russell2009-07-161-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Re-submitting this patch. Adding myself and Osvaldo Villalon. Best Regards, Adam ----- Original Message ----- From: "Jonathan Stowe" <jns@integration-house.com> To: "Adam Russell" <arussell@cs.uml.edu> Cc: <perl5-porters@perl.org> Sent: Friday, July 03, 2009 8:14 AM Subject: Re: patch submission(AUTHORS) > Hi, > that patch appears to made against a really old > version of the AUTHORS > file as it seems to be reverting some changes made > last year (my > e-mail address for instance :-) > > 2009/7/3 Adam Russell <arussell@cs.uml.edu>: >> Added myself(Adam Russell) and Osvaldo Villalon. > > > > -- > http://rabidgravy.com/ - Music > http://gellyfish.co.uk/ - Everything else > >From a3b77323290dc0da9da193cb5ac3178c1f6708db Mon Sep 17 00:00:00 2001 From: Adam Russell <arussell@cs.uml.edu> Date: Wed, 15 Jul 2009 00:59:35 -0400 Subject: [PATCH] Adding Adam Russell and Osvaldo Villalon(recent Symbian contributors).
* patch submisson(symbian/symbian_utils.cpp)Adam Russell2009-07-161-11/+21
| | | | | | | | | | This patch adds some compatibility for older Symbian SDKs. >From 146c431f9030e275fcf9aca35d79a72eece128c2 Mon Sep 17 00:00:00 2001 From: Osvaldo Villalon <ovillalon@dextratech.com> Date: Fri, 3 Jul 2009 01:26:33 -0400 Subject: [PATCH 1690/1692] Osvaldo Villalon's changes to symbian_utils.cpp.
* ExtUtils::MakeMaker 6.55_01David Mitchell2009-07-1633-75/+323
|
* An update to the pod is in order for the PERL_VMS_POSIX_EXIT logicalJohn E. Malmberg2009-07-151-14/+19
| | | | | | | name. That should help you with what to put in the delta file. I forgot to indicate in the file that the DECC$FILENAME_UNIX_REPORT feature also activates the PERL_VMS_POSIX_EXIT mode.
* expand Porting/release_managers_guide.podDavid Mitchell2009-07-152-208/+396
| | | | and remove some similar or out-of-date stuff from Porting/pumpkin.pod
* Document PL_opfreehookVincent Pit2009-07-151-0/+12
|
* The op_free() hook doesn't need to return an OP*, so introduce a new typedef ↵Vincent Pit2009-07-152-1/+2
| | | | for OP hooks
* document given/when in perltrapMoritz Lenz2009-07-151-2/+2
|
* add Porting/bump-perl-version to MANIFESTDavid Mitchell2009-07-151-0/+1
|
* test_harness, not just test, needs unpack_files on VMS.Craig A. Berry2009-07-141-1/+1
|