summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* patch@26996 - patch around stat("_NLA0:") bugJohn E. Malmberg2006-01-312-19/+18
| | | | | | From: "John E. Malmberg" <wb8tyw@qsl.net>Date: Mon, 30 Jan 2006 23:21:34 -0500 Message-id: <43DEE5CE.7060108@qsl.net> p4raw-id: //depot/perl@27015
* Silence a warning from the MS compiler about signed/unsigned mismatch.Nicholas Clark2006-01-311-2/+2
| | | p4raw-id: //depot/perl@27014
* Add perl594deltaRafael Garcia-Suarez2006-01-309-6/+75
| | | p4raw-id: //depot/perl@27010
* Change the author aliasing to reflect updates to AUTHORS.Nicholas Clark2006-01-301-2/+2
| | | p4raw-id: //depot/perl@27009
* Bump version number to 5.9.4Rafael Garcia-Suarez2006-01-3016-224/+305
| | | | | Regenerate template config in Porting p4raw-id: //depot/perl@27007
* Silence another Irix compiler warning.Nicholas Clark2006-01-301-2/+5
| | | p4raw-id: //depot/perl@27006
* Avoid a warning from the Irix C compiler.Nicholas Clark2006-01-301-1/+1
| | | p4raw-id: //depot/perl@27005
* Teach the Makefile how to cleanup config.over.Steve Peters2006-01-301-0/+1
| | | p4raw-id: //depot/perl@27004
* Code assumes that *FOO{SCALAR} will always return a scalar reference,Nicholas Clark2006-01-302-2/+15
| | | | | | | so make it so, creating $FOO if necessary. (Effectively this is a policy decision that PERL_DONT_CREATE_GVSV is visible to XS code, but isn't visible to Perl code) p4raw-id: //depot/perl@27002
* Add -DPTR_IS_LONG when building with -Duse64bitint on Solaris/i386. Steve Peters2006-01-301-0/+8
| | | | | Otherwise, the build fails in POSIX. p4raw-id: //depot/perl@27001
* Use a union for storing the shared hash key reference count, ratherNicholas Clark2006-01-304-11/+14
| | | | | than messy pointer hacks. p4raw-id: //depot/perl@27000
* [DOC PATCH] $^X isn't necessarily argv[0]Yitzchak Scott-Thoennes2006-01-301-1/+1
| | | | | Message-ID: <20060130090624.GA3760@efn.org> p4raw-id: //depot/perl@26999
* maint and blead: unicos.sh hintsJarkko Hietaniemi2006-01-301-1/+12
| | | | | Message-Id: <200601292145.k0TLj3mW320311@kosh.hut.fi> p4raw-id: //depot/perl@26998
* Assert that IVs and NVs can never be tainted.Nicholas Clark2006-01-301-4/+10
| | | p4raw-id: //depot/perl@26997
* Solaris seems not to enjoy initialising constants from SIG_??? on 64Nicholas Clark2006-01-291-3/+3
| | | | | bit builds. p4raw-id: //depot/perl@26996
* Upgrade to podlators-2.0.3Steve Peters2006-01-296-17/+29
| | | p4raw-id: //depot/perl@26995
* Email change for Steven SchubigerRafael Garcia-Suarez2006-01-291-1/+1
| | | p4raw-id: //depot/perl@26994
* Re: [patch] s/ar ts/ar s/gPhilippe M. Chiasson2006-01-291-2/+8
| | | | | | From: "Philippe M. Chiasson" <gozer@ActiveState.com> Message-ID: <43D944C3.60101@ActiveState.com> p4raw-id: //depot/perl@26993
* C compilers don't let you return void. Pay attention gcc, andNicholas Clark2006-01-291-6/+12
| | | | | stop aping Shildt. p4raw-id: //depot/perl@26991
* Avoid using space to create 2 functions just to force mathoms to beNicholas Clark2006-01-296-12/+24
| | | | | | linked. Instead, force the link via the perl interpreter structure via a function pointer that gets replaced at run time anyway. p4raw-id: //depot/perl@26990
* Call gv_fetchpvn_flags where we already know the length.Nicholas Clark2006-01-282-18/+23
| | | p4raw-id: //depot/perl@26989
* Upgrade to podlators-2.0.2Steve Peters2006-01-2812-100/+123
| | | p4raw-id: //depot/perl@26988
* Squeeze more flag manipulations together in sv_setsv_flags.Nicholas Clark2006-01-281-20/+9
| | | p4raw-id: //depot/perl@26987
* Upgrade to CPAN-1.83_59Steve Peters2006-01-284-76/+188
| | | p4raw-id: //depot/perl@26986
* Upgrade to Archive-Tar-1.28Steve Peters2006-01-284-5/+149
| | | p4raw-id: //depot/perl@26985
* Add gv_fetchpvs, which uses STR_WITH_LEN to call gv_fetchpvn_flags.Nicholas Clark2006-01-289-56/+62
| | | | | Many strlen()s saved. p4raw-id: //depot/perl@26983
* Merge the IOK and NOK clauses together in sv_setsv_flags.Nicholas Clark2006-01-281-9/+6
| | | p4raw-id: //depot/perl@26982
* The flags manipulation in sv_setsv_flags can be more efficient.Nicholas Clark2006-01-281-18/+5
| | | p4raw-id: //depot/perl@26981
* PERL_DONT_CREATE_GVSV wasn't as effective as it should have been.Nicholas Clark2006-01-281-0/+1
| | | p4raw-id: //depot/perl@26980
* By changing SvVOK() from returning 0/1 to 0/pointer-to-magic we canNicholas Clark2006-01-283-17/+24
| | | | | | save duplicating mg_find calls, without changing the semantics in any boolean context. p4raw-id: //depot/perl@26979
* Pull the other large chunk of PVGV assignment code into S_pvgv_assign.Nicholas Clark2006-01-281-136/+132
| | | | | There seems to be some duplication with S_glob_assign. p4raw-id: //depot/perl@26978
* Remove goto glob_assign;Nicholas Clark2006-01-281-3/+2
| | | p4raw-id: //depot/perl@26977
* Pull glob_assign out from sv_setsv_flags into a static function.Nicholas Clark2006-01-281-34/+40
| | | p4raw-id: //depot/perl@26976
* Update ChangesRafael Garcia-Suarez2006-01-281-0/+28
| | | p4raw-id: //depot/perl@26975
* Add perl 5.9.3 in release listRafael Garcia-Suarez2006-01-281-0/+1
| | | p4raw-id: //depot/perl@26974
* Re: Make Passive mode the default for Net::FTPGisle Aas2006-01-272-10/+19
| | | | | Message-ID: <lrslr91ytv.fsf@caliper.activestate.com> p4raw-id: //depot/perl@26970
* Oops. Forgot to add this file.Rafael Garcia-Suarez2006-01-271-0/+51
| | | p4raw-id: //depot/perl@26969
* Regenerate META.ymlRafael Garcia-Suarez2006-01-271-2/+28
| | | p4raw-id: //depot/perl@26968
* Regenerate Changes; remove ^M chars in ChangesRafael Garcia-Suarez2006-01-271-9/+1553
| | | p4raw-id: //depot/perl@26967
* Remove patch numberRafael Garcia-Suarez2006-01-271-4/+0
| | | p4raw-id: //depot/perl@26966
* Mention ptardiff in perldelta.Rafael Garcia-Suarez2006-01-271-0/+6
| | | p4raw-id: //depot/perl@26965
* Don't install ptardiff in the module treeRafael Garcia-Suarez2006-01-271-2/+2
| | | p4raw-id: //depot/perl@26964
* Install the ptardiff utility that comes with Archive::TarRafael Garcia-Suarez2006-01-276-6/+15
| | | p4raw-id: //depot/perl@26963
* Install nit : README.e2x should be installed, the other READMEs shouldn'tRafael Garcia-Suarez2006-01-271-1/+1
| | | p4raw-id: //depot/perl@26962
* Regenerate PODsRafael Garcia-Suarez2006-01-272-282/+210
| | | p4raw-id: //depot/perl@26961
* Some spelling fixes by David Landgren.Rafael Garcia-Suarez2006-01-271-7/+5
| | | | | Mention perltodo. p4raw-id: //depot/perl@26960
* Revert change 24461, now that change 26757 allows TESTRafael Garcia-Suarez2006-01-271-1/+1
| | | | | to accept extra output from module tests p4raw-id: //depot/perl@26959
* quiet gcc Info message in cygwinYitzchak Scott-Thoennes2006-01-271-0/+3
| | | | | Message-ID: <20060126031608.GA2588@efn.org> p4raw-id: //depot/perl@26958
* Remove note about #elif, see :Steve Hay2006-01-271-32/+0
| | | | | | Subject: Re: Change 26954: Simplify nested '#ifdef' by replacing it with '#elif defined()' Message-ID: <43D9FF4E.6010501@uk.radan.com> p4raw-id: //depot/perl@26957
* A description of the new constants.Nicholas Clark2006-01-271-1/+12
| | | p4raw-id: //depot/perl@26955