Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | We're going round in circles with pp_sys.c | Andy Lester | 2005-06-27 | 11 | -96/+112 |
| | | | | | | | Message-ID: <20050627180659.GB29744@petdance.com> (edited) p4raw-id: //depot/perl@24997 | ||||
* | Fix installation of ptar(1) manpage. | Rafael Garcia-Suarez | 2005-06-27 | 1 | -2/+0 |
| | | | | | The __END__ was making the POD being ignored by pod2man. p4raw-id: //depot/perl@24996 | ||||
* | Make Carp.pm even lighter (and Carp::Heavy even heavier) | Dave Mitchell | 2005-06-27 | 6 | -254/+236 |
| | | | | | Also move carp.pm pod to carp.pod p4raw-id: //depot/perl@24995 | ||||
* | Silence compiler warning in SDBM_File | Steve Hay | 2005-06-27 | 1 | -1/+1 |
| | | | | | | | Unless I'm missing something it looks like "key" actually is used, and the "key = key" assignment causes bcc32 to complain about use before definition! p4raw-id: //depot/perl@24994 | ||||
* | XSLoader for Sys::Syslog | Alexey Tourbin | 2005-06-27 | 1 | -4/+4 |
| | | | | | Message-ID: <20050626043204.GA31585@solemn.turbinal.org> p4raw-id: //depot/perl@24993 | ||||
* | Oops (fix previous fix). | Rafael Garcia-Suarez | 2005-06-27 | 5 | -5/+5 |
| | | | p4raw-id: //depot/perl@24992 | ||||
* | Fix tests of Filter::Simple 0.82 in the core | Rafael Garcia-Suarez | 2005-06-27 | 5 | -5/+5 |
| | | | p4raw-id: //depot/perl@24991 | ||||
* | Upgrade to Filter::Simple 0.82 | Rafael Garcia-Suarez | 2005-06-27 | 11 | -330/+413 |
| | | | p4raw-id: //depot/perl@24990 | ||||
* | Upgrade to Test::Harness 2.52 | Rafael Garcia-Suarez | 2005-06-27 | 3 | -17/+58 |
| | | | p4raw-id: //depot/perl@24989 | ||||
* | Upgrade to Time::HiRes 1.70 | Rafael Garcia-Suarez | 2005-06-27 | 3 | -3/+17 |
| | | | p4raw-id: //depot/perl@24988 | ||||
* | Suppress warnings about a clash between redefined malloc and the | Andy Lester | 2005-06-27 | 1 | -1/+1 |
| | | | | | | | | use of __attribute__malloc__ Subject: Re: Fun with __attribute__malloc__ Message-ID: <20050624171159.GB29590@petdance.com> p4raw-id: //depot/perl@24987 | ||||
* | Tweak the child dump socket protocol to return error messages to the | Nicholas Clark | 2005-06-26 | 1 | -32/+92 |
| | | | | | parent so that it can display what went wrong. p4raw-id: //depot/perl@24986 | ||||
* | Upgrade to Time::HiRes 1.69 | Rafael Garcia-Suarez | 2005-06-26 | 3 | -4/+66 |
| | | | p4raw-id: //depot/perl@24985 | ||||
* | When using DEBUG_LEAKING_SCALARS_FORK_DUMP it's possible to cause | Nicholas Clark | 2005-06-26 | 1 | -17/+93 |
| | | | | | | | | | indefinite hangs when the debugging child holds open Perl_debug_log, and it happens to be a file descriptor that is one end of a pipe, with a process sitting at the other end waitng for EOF. So close all descriptors in the child *including* Perl_debug_log, and pass it back in over the control socket if it's needed. p4raw-id: //depot/perl@24984 | ||||
* | Need to pass a my_perl to S_my_localtime to make threaded builds build. | Nicholas Clark | 2005-06-26 | 1 | -2/+2 |
| | | | p4raw-id: //depot/perl@24983 | ||||
* | Add a sanity check to Config::AUTOLOAD to prevent infinte loops if | Nicholas Clark | 2005-06-25 | 1 | -1/+3 |
| | | | | | Configure_heavy.pl gets truncated. p4raw-id: //depot/perl@24982 | ||||
* | On OS X to use perl's malloc need to USE_PERL_SBRK and emulate sbrk() | Nicholas Clark | 2005-06-25 | 1 | -0/+3 |
| | | | | | | using system malloc, because sbrk() stops giving us memory after about 14Mb. p4raw-id: //depot/perl@24981 | ||||
* | Need to skip exporting PL_dumper_fd unless it is used. | Nicholas Clark | 2005-06-25 | 1 | -0/+6 |
| | | | p4raw-id: //depot/perl@24980 | ||||
* | If forking during global destruction, the child needs to close all | Nicholas Clark | 2005-06-25 | 1 | -1/+24 |
| | | | | | | unused file descriptors, else it can cause other processes to hang because it accidentally holds open pipes and sockets. p4raw-id: //depot/perl@24979 | ||||
* | Upgrade to Unicode::Collate 0.51 | Rafael Garcia-Suarez | 2005-06-24 | 3 | -26/+70 |
| | | | p4raw-id: //depot/perl@24978 | ||||
* | Fix typo in win32.c | Steve Hay | 2005-06-24 | 1 | -1/+1 |
| | | | | | Doesn't fix bcc32 + USE_LARGE_FILES, though :-( p4raw-id: //depot/perl@24977 | ||||
* | Extend DEBUG_LEAKING_SCALARS_FORK_DUMP so it can also dump scalars | Nicholas Clark | 2005-06-24 | 8 | -34/+77 |
| | | | | | | which become unreferenced. This is less likely to be successful. The #define needs a better name. p4raw-id: //depot/perl@24976 | ||||
* | Stop '"__attribute__format__" redefined' warnings from gcc on Win32 | Steve Hay | 2005-06-24 | 2 | -31/+40 |
| | | | p4raw-id: //depot/perl@24975 | ||||
* | Make opendir() filename const in Win32-land & friends | Steve Hay | 2005-06-24 | 10 | -11/+11 |
| | | | | | | | | That fact that it wasn't const already was highlighted by a warning from pp_open_dir() generated by change 24743. Rather than undo the const change in pp_open_dir(), this seems to make more sense. Hope I haven't broken Netware or WinCE. p4raw-id: //depot/perl@24974 | ||||
* | Need to do some sort of die/warn to get the "global destruction" | Nicholas Clark | 2005-06-24 | 1 | -1/+3 |
| | | | | | text if the bug is still present. p4raw-id: //depot/perl@24973 | ||||
* | Fix t\op\gv.t on Win32 | Steve Hay | 2005-06-24 | 1 | -2/+3 |
| | | | p4raw-id: //depot/perl@24972 | ||||
* | Remove cargo-culted binmode. | Rafael Garcia-Suarez | 2005-06-24 | 1 | -2/+0 |
| | | | p4raw-id: //depot/perl@24971 | ||||
* | Fix Archive-Tar tests on Win32 following change 24954 | Steve Hay | 2005-06-24 | 1 | -0/+1 |
| | | | p4raw-id: //depot/perl@24970 | ||||
* | Workaround localtime edge case where TZ makes time go beyond | H.Merijn Brand | 2005-06-24 | 1 | -0/+51 |
| | | | | | the defined working range (AIX 5.2) p4raw-id: //depot/perl@24969 | ||||
* | change 24967 got the #endif in the wrong place | Dave Mitchell | 2005-06-23 | 1 | -1/+1 |
| | | | p4raw-id: //depot/perl@24968 | ||||
* | don't repopulate PADTMP slots with null SVs when freeing ops | Dave Mitchell | 2005-06-23 | 3 | -6/+13 |
| | | | p4raw-id: //depot/perl@24967 | ||||
* | Remove the reference loop between symbol tables and typeglobs. | Nicholas Clark | 2005-06-23 | 8 | -60/+110 |
| | | | | | Typeglobs now have a weak reference onto their symbol table. p4raw-id: //depot/perl@24966 | ||||
* | Pre-YAPC consting fun | Andy Lester | 2005-06-23 | 13 | -181/+196 |
| | | | | | Message-ID: <20050623190423.GA13835@petdance.com> p4raw-id: //depot/perl@24965 | ||||
* | Take a larger margin to prevent 'X' failures in smokes | H.Merijn Brand | 2005-06-23 | 1 | -1/+1 |
| | | | | | | I was able to get warnings on HP-UX 10.20 every 2nd to 3rd run when reps was still 10000. With 15000 I didn't get a single warning p4raw-id: //depot/perl@24964 | ||||
* | Warning suppression. | Rafael Garcia-Suarez | 2005-06-23 | 1 | -1/+1 |
| | | | p4raw-id: //depot/perl@24963 | ||||
* | The current implementation of :unique is fundamentally flawed, | Nicholas Clark | 2005-06-23 | 6 | -88/+23 |
| | | | | | | | | because declaring a scalar READONLY does not stop it being modified. Hence the current implementation of :unique is *not threadsafe* D'oh! Better implementations welcome. p4raw-id: //depot/perl@24962 | ||||
* | Fix Archive::Tar test when perl is built with -Dmksymlinks | Rafael Garcia-Suarez | 2005-06-23 | 1 | -1/+1 |
| | | | p4raw-id: //depot/perl@24961 | ||||
* | Re: [perl #9741] possible problem with File::Find | Steve Peters | 2005-06-23 | 1 | -69/+77 |
| | | | | | Message-ID: <20050618042714.GA29589@mccoy.peters.homeunix.org> p4raw-id: //depot/perl@24960 | ||||
* | Add a define PERL_POISON which tries to trip up anything accessing | Nicholas Clark | 2005-06-23 | 6 | -11/+19 |
| | | | | | | freed or uninitialised memory. Currently only Poison()s freed pointers. p4raw-id: //depot/perl@24959 | ||||
* | Indent some of the #ifdef/#define/#endif to make the nesting clearer. | Nicholas Clark | 2005-06-23 | 1 | -54/+53 |
| | | | | | Simplify SvPV_free slightly. p4raw-id: //depot/perl@24958 | ||||
* | This dummy test didn't pass | Rafael Garcia-Suarez | 2005-06-23 | 1 | -0/+2 |
| | | | p4raw-id: //depot/perl@24957 | ||||
* | Add a pseudo-test to clean up data files for Archive::Tar tests | Rafael Garcia-Suarez | 2005-06-23 | 2 | -0/+10 |
| | | | p4raw-id: //depot/perl@24956 | ||||
* | Remove test that relies on Test::POD | Rafael Garcia-Suarez | 2005-06-23 | 2 | -19/+0 |
| | | | p4raw-id: //depot/perl@24955 | ||||
* | Remove binary files, add a pseudo-test in Archive::Tar to generate them | Rafael Garcia-Suarez | 2005-06-23 | 6 | -4/+686 |
| | | | p4raw-id: //depot/perl@24954 | ||||
* | Silence bcc32 compiler warnings following change 24945 | Steve Hay | 2005-06-23 | 2 | -3/+3 |
| | | | | | ("Possible use of '%s' before definition") p4raw-id: //depot/perl@24953 | ||||
* | Re-initialise PL_curcop to &PL_compiling before destroying the optree. | Nicholas Clark | 2005-06-23 | 1 | -1/+5 |
| | | | p4raw-id: //depot/perl@24952 | ||||
* | Re: [perl #36350] unstable sorting for use integer; sort { $b <=> $a } @foo | Salvador FandiƱo | 2005-06-23 | 1 | -21/+9 |
| | | | | | Message-ID: <20050621181658.5977.qmail@lists.develooper.com> p4raw-id: //depot/perl@24951 | ||||
* | Oops! Change 24946 wasn't quite right | Steve Hay | 2005-06-23 | 1 | -1/+1 |
| | | | p4raw-id: //depot/perl@24950 | ||||
* | Add handling of NV_ZERO_IS_ALLBITS_ZERO for Netware and epoc | Rafael Garcia-Suarez | 2005-06-23 | 3 | -0/+7 |
| | | | p4raw-id: //depot/perl@24949 | ||||
* | Define d_nv_zero_is_allbits_zero for symbian | Rafael Garcia-Suarez | 2005-06-23 | 1 | -0/+1 |
| | | | | | (noticed by Jarkko) p4raw-id: //depot/perl@24948 |