summaryrefslogtreecommitdiff
path: root/perl.c
Commit message (Expand)AuthorAgeFilesLines
* Change perl -v version formatDavid Golden2009-11-141-3/+5
* Add ENTER_with_name and LEAVE_with_name to automaticly check for matching ENT...Gerard Goossen2009-11-121-0/+3
* Make my_exit behave the same as the Perl exit. And add tests for itGerard Goossen2009-11-081-14/+0
* Add assertions about there being no leftover scopes when enter perl_destruct.Gerard Goossen2009-11-081-0/+3
* Add a line directive to op.c and perl.c such that error messages refer to the...Gerard Goossen2009-11-061-0/+1
* Add Perl_ck_warner_d(), which combines Perl_ckwarn_d() and Perl_warner().Nicholas Clark2009-10-121-11/+11
* Add Perl_ck_warner(), which combines Perl_ckwarn() and Perl_warner().Nicholas Clark2009-10-121-3/+2
* In Perl_moreswitches(), merge 2 string constants in the code implementing -v.Nicholas Clark2009-10-051-3/+2
* $^O is initalised to OSNAME, so no need to return the latter from Internals::V.Nicholas Clark2009-10-051-3/+1
* Move initialising PL_osname from S_init_predump_symbols to perl_construct().Nicholas Clark2009-10-051-3/+2
* Simplify building the Perl code invoked for perl -VNicholas Clark2009-09-301-4/+3
* Move the implementation of ./perl -V to Internals::V and Config::_VNicholas Clark2009-09-291-83/+89
* For miniperl, disable PERL_UNICODE and -C.Nicholas Clark2009-09-231-0/+2
* Restrict miniperl to just -I..., the split of $ENV{PERL5LIB}, and "." in @INCNicholas Clark2009-09-231-0/+5
* Declare PERL_IS_MINIPERL in the output of ./{mini,}perl -VNicholas Clark2009-09-231-0/+3
* Ensure that the perl build doesn't read any installed sitecustomize script.Nicholas Clark2009-09-151-1/+1
* Avoid setting $! if the sitecustomize script doesn't exist.Nicholas Clark2009-09-151-1/+6
* Remove obsolete interpreter variable PL_utf8_alnumcRafael Garcia-Suarez2009-09-131-2/+0
* call_method() uses newSVpvn_flags(), instead of sv_2mortal(newSVpv(...)), bec...gfx2009-09-051-1/+5
* finish implementing -DB vs. -DxChip Salzenberg2009-08-301-1/+2
* New debugging flag -DB now dumps subroutine definitions,Chip Salzenberg2009-08-261-1/+2
* add -DM flag to track smartmatch resolutionDavid Mitchell2009-08-201-1/+2
* Add PERL_DISABLE_PMC to the list of -V's compile-time options.Nicholas Clark2009-08-191-0/+3
* Remove the port to MiNT. It's a dead platform that hasn't had any love since...Jesse Vincent2009-08-031-4/+0
* Don't enqueue pending signals during global destructionLubomir Rintel2009-06-251-0/+7
* drop remaining mentions of PERL_MEM_LOG_FOO envarsJim Cromie2009-06-211-9/+0
* Also replace PERL_MEM_LOG_STDERR by PERL_MEM_LOG_NOIMPL in the -V outputRafael Garcia-Suarez2009-06-211-2/+2
* Move the code to add magic to $0 into Perl_gv_fetchpvn_flags().Nicholas Clark2009-05-231-5/+0
* Use only one block of memory for both PL_psig_name and PL_psig_ptr.Nicholas Clark2009-05-211-2/+1
* Remove binary compatibility scaffolding for the change to PL_bitcount.Nicholas Clark2009-05-201-4/+0
* Replace run-time on-demand initialisation of PL_bitcount with a constant table.Nicholas Clark2009-05-201-2/+4
* Simplifications to S_incpush() now possible without MACOS_TRADITIONAL.Nicholas Clark2009-04-271-10/+4
* Remove all #ifdef MACOS_TRADITIONAL code in core and non-dual-life XS code.Nicholas Clark2009-04-271-129/+2
* [PATCH] Allow PERL5OPT=-WMichael G Schwern2009-04-251-1/+1
* Convert xsutils.c and lib/attributes.pm to a regular XS extension.Nicholas Clark2009-04-121-1/+0
* In S_parse_body(), sv hasn't been needed since -P bit the dust.Nicholas Clark2009-02-241-6/+0
* Fix unused variable warningJerry D. Hedden2009-02-231-0/+2
* VMS-specific nit in S_init_perllib after 2cace6acdfad87b2d298bff18b91b339c18f...Craig A. Berry2009-02-221-1/+2
* For S_incpush(), dir is never NULL, and len is always > 0.Nicholas Clark2009-02-221-5/+5
* Optimise S_incpush() by avoiding repeatedly copying libdir to subdir.Nicholas Clark2009-02-221-13/+15
* In S_incpush, move the declaration of subdir inside the only block that uses it.Nicholas Clark2009-02-221-9/+5
* Tidy up incpush. Re-order the macros, and re-indent some code.Nicholas Clark2009-02-221-16/+26
* Move unversioned directories in PERL_OTHERLIBDIRS later in @INC.Nicholas Clark2009-02-221-7/+17
* 7fc731078209e8c26ed8bba477edfd90724c7146 missed one (addsubdirs || addoldvers).Nicholas Clark2009-02-221-1/+1
* In S_init_perllib(), push the bare VENDORLIB_STEM onto @INC after its subdirs.Nicholas Clark2009-02-221-6/+1
* In S_init_perllib(), push the bare SITELIB_STEM onto @INC after its subdirs.Nicholas Clark2009-02-221-6/+1
* In S_incpush(), move push @INC, ".../$archname" if -d ".../$archname"; later.Nicholas Clark2009-02-221-7/+9
* In S_init_perllib(), initialise perl5lib to NULL, to keep trace flow happy.Nicholas Clark2009-02-221-1/+1
* In S_incpush(), replace (addsubdirs || addoldvers) with a constant variable.Nicholas Clark2009-02-221-3/+4
* In S_init_perllib(), s can be const char*Nicholas Clark2009-02-221-1/+1