summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Get rid of unnecessary "rmdir /s" calls in Win32 makefilesSteve Hay2006-03-082-48/+0
| | | | | | | | | | | | They only existed for the benefit of old shells that didn't understand "rmdir /s /q", but since change #27195 effectively drops support for old shells that don't understand "xcopy /y" it seems unnecessary now. Windows NT4, 2000, XP and onwards all support "rmdir /s /q", so it's probably only the Windows 9x shells that lose out. p4raw-link: @27195 on //depot/perl: b6ed73147a6df30ce6f460cb8d6857100c9a83be p4raw-id: //depot/perl@27421
* Sort the ext/ and lib/ tests when running under t/harnessSteve Hay2006-03-081-1/+5
| | | | | | | | | | | | Unless they are sorted then they are run in the same order in which they are listed in MANIFEST, which is not always ideal. In particular, the ext/Compress/IO/Zlib/t/*.t tests are not run in the correct order, which causes some files to be left behind afterwards. ExtUtils::Command::MM::test_harness() sorts test files, so it seems sensible for t/harness to do likewise, rather than relying on the ordering in MANIFEST. p4raw-id: //depot/perl@27420
* Add MAD changes to pad code (new function Perl_pad_peg)Nicholas Clark2006-03-086-1/+34
| | | p4raw-id: //depot/perl@27419
* Adjust Win32 distclean as per changes #27411 and #27417Steve Hay2006-03-082-20/+20
| | | | | p4raw-link: @27411 on //depot/perl: af39be2fd6c4d2b16b9660b0f3beb455fa5cf866 p4raw-id: //depot/perl@27418
* "make distclean" fix noticed by Steve HayRafael Garcia-Suarez2006-03-081-1/+1
| | | p4raw-id: //depot/perl@27417
* Cleanup Archive-Tar temporary test filesSteve Hay2006-03-082-1/+2
| | | | | | | I've done this twice before already (changes #25043 and #26785), but it keeps getting accidentally removed. Third time lucky? p4raw-link: @25043 on //depot/perl: d2f9954da5cf024584e2642e8a40c50dd202ef16 p4raw-id: //depot/perl@27416
* Re: [perl #38684] O::Deparse not working as expected Stephen McCamant2006-03-082-7/+9
| | | | | Message-ID: <17422.22238.570532.2771@apocalypse.OCF.Berkeley.EDU> p4raw-id: //depot/perl@27415
* Removed unused check and assignment in pp_hot.cAndy Lester2006-03-081-3/+2
| | | | | Message-ID: <20060308064529.GA16499@petdance.com> p4raw-id: //depot/perl@27414
* Don't try to export PL_madskills/PL_xmlfp when they're not definedSteve Hay2006-03-081-0/+7
| | | | | | (Fixes Win32 linker error introduced by change #27408) p4raw-link: @27408 on //depot/perl: 598921a7d8d43baa942b750d26a55dadca2c13d5 p4raw-id: //depot/perl@27413
* Complete change #27407/27410 on Win32 and tidy up change #27372Steve Hay2006-03-084-13/+36
| | | | | | p4raw-link: @27407 on //depot/perl: a724edfe531a4a4cce2d4bbb94e1f583d86bc9a3 p4raw-link: @27372 on //depot/perl: df012815e587b94cd356692431756ba265085fbf p4raw-id: //depot/perl@27412
* "make distclean" adjustments for the new Compress modulesRafael Garcia-Suarez2006-03-081-2/+3
| | | p4raw-id: //depot/perl@27411
* Backport #27407H.Merijn Brand2006-03-083-31/+31
| | | | | | Add a Configure question for mad (Misc Attribute Decoration - Larry's perl5 to perl[56] convertor), which if set defines PERL_MAD in config.h p4raw-id: //depot/perl@27410
* Some of the MAD structures in headers, plus PL_madskills and PL_xmlfp,Nicholas Clark2006-03-076-9/+77
| | | | | | | and default definitions for the 2 variables. (Which will save a lot of conditional complilation, by instead letting the C compiler optimiser remove dead code.) p4raw-id: //depot/perl@27408
* Add a Configure question for mad (Misc Attribute Decoration - Larry'sNicholas Clark2006-03-0716-0/+49
| | | | | perl5 to perl[56] convertor), which if set defines PERL_MAD in config.h p4raw-id: //depot/perl@27407
* Two more TODOs for those with C knowledge.Nicholas Clark2006-03-071-0/+25
| | | p4raw-id: //depot/perl@27406
* Remove the #define - ARENASETS are always on now.Nicholas Clark2006-03-072-41/+1
| | | p4raw-id: //depot/perl@27405
* TPF++ # http://www.perlfoundation.org/gc/grants/2006-perl5-improve.htmlNicholas Clark2006-03-071-5/+4
| | | | | Shrinking PVGVs, PVLVs, PVCVs and PVFMs is TODOne. p4raw-id: //depot/perl@27404
* This looks like a memory leak.Rafael Garcia-Suarez2006-03-071-0/+1
| | | p4raw-id: //depot/perl@27403
* $[ = 2 should not warn.Rafael Garcia-Suarez2006-03-072-1/+5
| | | p4raw-id: //depot/perl@27402
* Fix lib/Module/Build/t/compat.tSteve Hay2006-03-071-1/+1
| | | | | (e.g. see http://www.nntp.perl.org/group/perl.daily-build.reports/36431) p4raw-id: //depot/perl@27401
* Make report on bad filenames easier to readRafael Garcia-Suarez2006-03-071-2/+2
| | | p4raw-id: //depot/perl@27400
* FAQ sync. (FAQ now moved to svn)Rafael Garcia-Suarez2006-03-0710-389/+498
| | | p4raw-id: //depot/perl@27399
* Upgrade to PathTools-3.17Steve Peters2006-03-074-9/+25
| | | p4raw-id: //depot/perl@27398
* Re: [PATCH] Removed a redundant o->op_typePaul Johnson2006-03-061-1/+0
| | | | | Message-ID: <20060228191731.GD20933@pjcj.net> p4raw-id: //depot/perl@27397
* Don't free thread memory if PERL_DESTRUCT_LEVEL is set to a non-zeroMarcus Holland-Moritz2006-03-061-4/+13
| | | | | value as we're probably hunting memory leaks then p4raw-id: //depot/perl@27396
* Update David Dyck's e-mail address.Nicholas Clark2006-03-062-1/+2
| | | p4raw-id: //depot/perl@27393
* Add all new utilities in the perlutil man page.Rafael Garcia-Suarez2006-03-061-8/+101
| | | | | Includes lots of work by Zsban Ambrus. p4raw-id: //depot/perl@27390
* add Module::Build 0.27_08Yitzchak Scott-Thoennes2006-03-0659-9/+15571
| | | | | Message-ID: <20060305200830.GA2660@efn.org> p4raw-id: //depot/perl@27389
* Upgrade to Archive::Tar 1.29Rafael Garcia-Suarez2006-03-064-51/+138
| | | p4raw-id: //depot/perl@27388
* Add and remove files forgotten in change #27384Rafael Garcia-Suarez2006-03-06112-33603/+1646
| | | | | p4raw-link: @27384 on //depot/perl: 25f0751fb55a0f87a7e18ae8960f9acf2407ae32 p4raw-id: //depot/perl@27387
* PATCH: 2 vms specific build files in perl @ 27383Peter Prymmer2006-03-062-21/+23
| | | | | Message-id: <OFF0B19477.39D9ABEB-ON85257129.00070590-85257129.000840D3@factset.com> p4raw-id: //depot/perl@27386
* Re: threads and VMSJohn E. Malmberg2006-03-061-62/+60
| | | | | | From: "John E. Malmberg" <wb8tyw@qsl.net> Message-id: <440A77EB.2030205@qsl.net> p4raw-id: //depot/perl@27385
* Compress::ZlibPaul Marquess2006-03-06157-1273/+38530
| | | | | | From: "Paul Marquess" <paul.marquess@ntlworld.com> Message-ID: <007101c63eac$d919c6c0$4c05140a@myopwv.com> p4raw-id: //depot/perl@27384
* Change 27380 (HEK into the IV union failed to convert the code in theNicholas Clark2006-03-051-1/+1
| | | | | non-gcc-debugging ifdef. Whoops. Very lax of me) p4raw-id: //depot/perl@27383
* Perl_gv_name_set should not leak the old HEK. Allow the flag GV_ADDNicholas Clark2006-03-053-3/+9
| | | | | to simplify GV initialisation. p4raw-id: //depot/perl@27382
* Change hv_name_set to take U32 length and flags parameters.Nicholas Clark2006-03-053-3/+6
| | | p4raw-id: //depot/perl@27381
* Move the GvNAME HEK into the IV union - every GV is now 1 pointerNicholas Clark2006-03-056-7/+24
| | | | | smaller. p4raw-id: //depot/perl@27380
* Use a HEK to store the GV's name, rather than a malloc()ed string.Nicholas Clark2006-03-054-22/+25
| | | | | | | Saves 1 word in each GV (no more strlen), and will also save the memory used by the string itself, as the HEK will exist already due to the key used by the symbol table for this GV. p4raw-id: //depot/perl@27379
* Only #define PERL_DONT_CREATE_GVSV if it wasn't already defined.Nicholas Clark2006-03-051-1/+3
| | | p4raw-id: //depot/perl@27378
* Provide Perl_gv_name_set to replace LVALUE use of GvNAME and GvNAMESET.Nicholas Clark2006-03-057-19/+39
| | | p4raw-id: //depot/perl@27377
* Re: threads and VMSJohn E. Malmberg2006-03-051-1/+1
| | | | | | From: "John E. Malmberg" <wb8tyw@qsl.net> Message-id: <440A22D2.30009@qsl.net> p4raw-id: //depot/perl@27376
* patch@27373 VMS build fix + more long pathname stuffJohn E. Malmberg2006-03-041-12/+28
| | | | | | From: "John E. Malmberg" <wb8tyw@qsl.net> Message-ID: <44092743.4030607@qsl.net> p4raw-id: //depot/perl@27375
* Re: [PATCH] include configure.com in Porting/checkcfgvar.plAbe Timmerman2006-03-042-5/+3
| | | | | Message-Id: <200603032256.47170.abe@ztreet.demon.nl> p4raw-id: //depot/perl@27374
* Add d_builtin_choose_expr and d_builtin_expect to configure.com asSteve Peters2006-03-031-0/+2
| | | | | 'undef'. p4raw-id: //depot/perl@27373
* Make Win32 configuration changes for HAS_BUILTIN_CHOOSE_EXPR andSteve Peters2006-03-038-0/+49
| | | | | HAS_BUILTIN_EXPECT. p4raw-id: //depot/perl@27372
* include configure.com in Porting/checkcfgvar.plAbe Timmerman2006-03-031-1/+8
| | | | | Message-Id: <200603031843.24250.abe@ztreet.demon.nl> p4raw-id: //depot/perl@27371
* Support for __builtin_expect and __builtin_choose_exprAndy Lester2006-03-034-70/+166
| | | | | Message-ID: <20051228213408.GB26033@petdance.com> p4raw-id: //depot/perl@27370
* Re: [perl #38657] -d:Foo=bar broke in 5.8.8Jarkko Hietaniemi2006-03-032-3/+14
| | | | | Message-ID: <440737A6.4060606@gmail.com> p4raw-id: //depot/perl@27368
* #27363 broke HP-UX (and others). if [[ ... ]] syntax not supportedH.Merijn Brand2006-03-031-13/+15
| | | p4raw-id: //depot/perl@27367
* Re: [PATCH] Re: [perl #38612] Data::Dumper core dump in 5.8.6, fixed by 5.8.7Jarkko Hietaniemi2006-03-031-1/+16
| | | | | Message-ID: <44075996.1000002@gmail.com> p4raw-id: //depot/perl@27365