| Commit message (Expand) | Author | Age | Files | Lines |
* | For miniperl, disable PERL_UNICODE and -C. | Nicholas Clark | 2009-09-23 | 1 | -0/+2 |
* | Restrict miniperl to just -I..., the split of $ENV{PERL5LIB}, and "." in @INC | Nicholas Clark | 2009-09-23 | 1 | -0/+5 |
* | Declare PERL_IS_MINIPERL in the output of ./{mini,}perl -V | Nicholas Clark | 2009-09-23 | 1 | -0/+3 |
* | Ensure that the perl build doesn't read any installed sitecustomize script. | Nicholas Clark | 2009-09-15 | 1 | -1/+1 |
* | Avoid setting $! if the sitecustomize script doesn't exist. | Nicholas Clark | 2009-09-15 | 1 | -1/+6 |
* | Remove obsolete interpreter variable PL_utf8_alnumc | Rafael Garcia-Suarez | 2009-09-13 | 1 | -2/+0 |
* | call_method() uses newSVpvn_flags(), instead of sv_2mortal(newSVpv(...)), bec... | gfx | 2009-09-05 | 1 | -1/+5 |
* | finish implementing -DB vs. -Dx | Chip Salzenberg | 2009-08-30 | 1 | -1/+2 |
* | New debugging flag -DB now dumps subroutine definitions, | Chip Salzenberg | 2009-08-26 | 1 | -1/+2 |
* | add -DM flag to track smartmatch resolution | David Mitchell | 2009-08-20 | 1 | -1/+2 |
* | Add PERL_DISABLE_PMC to the list of -V's compile-time options. | Nicholas Clark | 2009-08-19 | 1 | -0/+3 |
* | Remove the port to MiNT. It's a dead platform that hasn't had any love since... | Jesse Vincent | 2009-08-03 | 1 | -4/+0 |
* | Don't enqueue pending signals during global destruction | Lubomir Rintel | 2009-06-25 | 1 | -0/+7 |
* | drop remaining mentions of PERL_MEM_LOG_FOO envars | Jim Cromie | 2009-06-21 | 1 | -9/+0 |
* | Also replace PERL_MEM_LOG_STDERR by PERL_MEM_LOG_NOIMPL in the -V output | Rafael Garcia-Suarez | 2009-06-21 | 1 | -2/+2 |
* | Move the code to add magic to $0 into Perl_gv_fetchpvn_flags(). | Nicholas Clark | 2009-05-23 | 1 | -5/+0 |
* | Use only one block of memory for both PL_psig_name and PL_psig_ptr. | Nicholas Clark | 2009-05-21 | 1 | -2/+1 |
* | Remove binary compatibility scaffolding for the change to PL_bitcount. | Nicholas Clark | 2009-05-20 | 1 | -4/+0 |
* | Replace run-time on-demand initialisation of PL_bitcount with a constant table. | Nicholas Clark | 2009-05-20 | 1 | -2/+4 |
* | Simplifications to S_incpush() now possible without MACOS_TRADITIONAL. | Nicholas Clark | 2009-04-27 | 1 | -10/+4 |
* | Remove all #ifdef MACOS_TRADITIONAL code in core and non-dual-life XS code. | Nicholas Clark | 2009-04-27 | 1 | -129/+2 |
* | [PATCH] Allow PERL5OPT=-W | Michael G Schwern | 2009-04-25 | 1 | -1/+1 |
* | Convert xsutils.c and lib/attributes.pm to a regular XS extension. | Nicholas Clark | 2009-04-12 | 1 | -1/+0 |
* | In S_parse_body(), sv hasn't been needed since -P bit the dust. | Nicholas Clark | 2009-02-24 | 1 | -6/+0 |
* | Fix unused variable warning | Jerry D. Hedden | 2009-02-23 | 1 | -0/+2 |
* | VMS-specific nit in S_init_perllib after 2cace6acdfad87b2d298bff18b91b339c18f... | Craig A. Berry | 2009-02-22 | 1 | -1/+2 |
* | For S_incpush(), dir is never NULL, and len is always > 0. | Nicholas Clark | 2009-02-22 | 1 | -5/+5 |
* | Optimise S_incpush() by avoiding repeatedly copying libdir to subdir. | Nicholas Clark | 2009-02-22 | 1 | -13/+15 |
* | In S_incpush, move the declaration of subdir inside the only block that uses it. | Nicholas Clark | 2009-02-22 | 1 | -9/+5 |
* | Tidy up incpush. Re-order the macros, and re-indent some code. | Nicholas Clark | 2009-02-22 | 1 | -16/+26 |
* | Move unversioned directories in PERL_OTHERLIBDIRS later in @INC. | Nicholas Clark | 2009-02-22 | 1 | -7/+17 |
* | 7fc731078209e8c26ed8bba477edfd90724c7146 missed one (addsubdirs || addoldvers). | Nicholas Clark | 2009-02-22 | 1 | -1/+1 |
* | In S_init_perllib(), push the bare VENDORLIB_STEM onto @INC after its subdirs. | Nicholas Clark | 2009-02-22 | 1 | -6/+1 |
* | In S_init_perllib(), push the bare SITELIB_STEM onto @INC after its subdirs. | Nicholas Clark | 2009-02-22 | 1 | -6/+1 |
* | In S_incpush(), move push @INC, ".../$archname" if -d ".../$archname"; later. | Nicholas Clark | 2009-02-22 | 1 | -7/+9 |
* | In S_init_perllib(), initialise perl5lib to NULL, to keep trace flow happy. | Nicholas Clark | 2009-02-22 | 1 | -1/+1 |
* | In S_incpush(), replace (addsubdirs || addoldvers) with a constant variable. | Nicholas Clark | 2009-02-22 | 1 | -3/+4 |
* | In S_init_perllib(), s can be const char* | Nicholas Clark | 2009-02-22 | 1 | -1/+1 |
* | In S_init_perllib(), only call PerlEnv_getenv("PERL5LIB") once. | Nicholas Clark | 2009-02-22 | 1 | -8/+11 |
* | Unwind the implicit loop in S_init_perllib(), by writing the code out longhand. | Nicholas Clark | 2009-02-22 | 1 | -37/+71 |
* | Change the value passed into S_init_perllib() to a boolean flag. | Nicholas Clark | 2009-02-21 | 1 | -7/+7 |
* | NetWare has PRIVLIB_EXP as something other than a string constant. Cope with it. | Nicholas Clark | 2009-02-21 | 1 | -0/+4 |
* | In S_init_perllib(), correct errors in the MACOS_TRADITIONAL conditional code. | Nicholas Clark | 2009-02-21 | 1 | -2/+4 |
* | Add a parameter to win32_get_{priv,site,vendor}lib(), to return the length, | Nicholas Clark | 2009-02-20 | 1 | -6/+10 |
* | Silence a casting warning with memchr() | Rafael Garcia-Suarez | 2009-02-20 | 1 | -1/+1 |
* | Remove the stub nw_get_sitelib(), and undefine SITELIB_EXP for NetWare. | Nicholas Clark | 2009-02-18 | 1 | -1/+0 |
* | Pass the length of the string to S_incpush_use_sep(), where known. | Nicholas Clark | 2009-02-17 | 1 | -36/+39 |
* | In S_incpush(), avoid "possible loss of data" warnings from the C compiler. | Nicholas Clark | 2009-02-17 | 1 | -4/+4 |
* | As WIN32 is already using different flags to incpush_use_sep for SITELIB_EXP, | Nicholas Clark | 2009-02-16 | 1 | -4/+9 |
* | By spliting PERL_ARCH_FMT into PERL_ARCH_FMT_PREFIX and SUFFIX, we can replace | Nicholas Clark | 2009-02-16 | 1 | -7/+12 |