summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* follow-up to 23767Robin Barker2005-01-112-25/+22
| | | | | Message-ID: <533D273D4014D411AB1D00062938C4D90849C56A@hotel.npl.co.uk> p4raw-id: //depot/perl@23781
* Remove PERL_FLEXIBLE_EXCEPTIONS code.Marcus Holland-Moritz2005-01-1016-335/+41
| | | p4raw-id: //depot/perl@23780
* t/op/split.t #11 nit on VMSCraig A. Berry2005-01-101-6/+2
| | | | | | | From: "Craig A. Berry" <craigberry@mac.com> Message-ID: <41E1C261.5020100@mac.com> Date: Sun, 09 Jan 2005 17:46:41 -0600 p4raw-id: //depot/perl@23779
* Need to close files before unlinking them on Win32Steve Hay2005-01-104-1/+5
| | | | | | (Various files created by test programs are left behind otherwise, and distclean doesn't clean them up) p4raw-id: //depot/perl@23778
* Make Win32's distclean target clean up properlySteve Hay2005-01-102-0/+8
| | | p4raw-id: //depot/perl@23777
* Get $Config{osvers} filled in on Win32Steve Hay2005-01-101-0/+2
| | | p4raw-id: //depot/perl@23776
* follow-up to #23748, -Duselargefiles on VMSCraig A. Berry2005-01-101-6/+8
| | | | | | From: "Craig A. Berry" <craigberry@mac.com> Message-ID: <41E1C3A9.9080900@mac.com> p4raw-id: //depot/perl@23775
* Shorter source code in pp_gelem. (But it compiles to the same size)Nicholas Clark2005-01-091-4/+2
| | | p4raw-id: //depot/perl@23774
* If we know the length of the string constant, save a strlen()Nicholas Clark2005-01-092-3/+3
| | | p4raw-id: //depot/perl@23773
* savepv(SvPV(sv,n_a)) is common, and creates an unnecessary call toNicholas Clark2005-01-099-10/+35
| | | | | | strlen(). Add savesvpv(sv), which gets the length from the SV, and returns a copy of its PV. p4raw-id: //depot/perl@23772
* Can pass in a length here without introducing a bug. Might saveNicholas Clark2005-01-091-2/+6
| | | | | a strlen() p4raw-id: //depot/perl@23771
* Pull the am-I-utf8-or-not logic into one place (S_newSV_maybe_utf8)Nicholas Clark2005-01-091-6/+18
| | | | | as I think that it will be needed for utf8 soft references. p4raw-id: //depot/perl@23770
* Disable PERL_MALLOC and DEBUG_MSTATS in win32/makefile.mk by defaultSteve Hay2005-01-071-2/+6
| | | | | | | | | | | | and force PERL_MALLOC off if USE_IMP_SYS is on This brings makefile.mk into line with Makefile in this regard (PERL_MALLOC cannot currently be used with USE_IMP_SYS, e.g. see: http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2004-07/msg00465.html so it is sensible to enforce this, and to not have the default set to a configuration that isn't allowed) p4raw-id: //depot/perl@23769
* Re: [PATCH] Remove Carp from warnings.pmJim Cromie2005-01-0711-137/+114
| | | | | Message-ID: <cfe85dfa05010305367445dee6@mail.gmail.com> p4raw-id: //depot/perl@23768
* to improve -DCHECK_FORMATRobin Barker2005-01-075-8/+33
| | | | | Message-ID: <533D273D4014D411AB1D00062938C4D90849C55A@hotel.npl.co.uk> p4raw-id: //depot/perl@23767
* Stage 1 of utf8 support for soft references.Nicholas Clark2005-01-0716-93/+130
| | | | | | | | | | Change gv_fetchpv to take a UTF8 flag, as gv_fetchpvn_flags Add gv_fetchsv to look up a GV by SV rather than a char * pointer Provide a backwards compatability gv_fetchpv Migrate from gv_fetchpv to gv_fetchsv where the caller was grabbing the pointer from an SV All tests still pass. p4raw-id: //depot/perl@23766
* make lib/warnings.t use t/test.plCraig A. Berry2005-01-071-24/+12
| | | | | | | From: "Craig A. Berry" <craigberry@mac.com> Message-ID: <41DDCA71.1080704@mac.com> Date: Thu, 06 Jan 2005 17:32:01 -0600 p4raw-id: //depot/perl@23765
* Fix win32/config.*'s cc, ld and other related valuesYitzchak Scott-Thoennes2005-01-074-19/+19
| | | | | | | | | | | | | | | | | | cc and ld themselves always get replaced with correct values anyway so we just provide example values as per other similar settings Other related values (ccname, cpp, cpprun, cppstdin) need to use the correct ~keyword~, namely ~cc~, not ~CC~, otherwise they do not get set Subject: [PATCH] Re: lib/Config/Extensions.t fails on Win32 Date: Wed, 5 Jan 2005 10:01:41 -0800 Message-ID: <20050105180141.GA676@efn.org> Subject: Re: [PATCH] Re: lib/Config/Extensions.t fails on Win32 From: Yitzchak Scott-Thoennes <sthoenna@efn.org> Date: Thu, 6 Jan 2005 11:53:11 -0800 Message-ID: <20050106195311.GC1300@efn.org> p4raw-id: //depot/perl@23764
* Add TODO tests for UTF8 encoded soft referencesNicholas Clark2005-01-061-1/+48
| | | p4raw-id: //depot/perl@23763
* Allow static linking core extensions on Win32 with MinGWYitzchak Scott-Thoennes2005-01-062-17/+16
| | | | | | Subject: [PATCH] Re: lib/Config/Extensions.t fails on Win32 Message-ID: <20050105180141.GA676@efn.org> p4raw-id: //depot/perl@23762
* Silence a compilation warningRafael Garcia-Suarez2005-01-061-1/+1
| | | p4raw-id: //depot/perl@23761
* Turn barewords into strings to run under strict subs.Nicholas Clark2005-01-061-13/+20
| | | | | Run under strict refs outside the soft reference tests. p4raw-id: //depot/perl@23760
* All tests now use test.plNicholas Clark2005-01-061-51/+57
| | | p4raw-id: //depot/perl@23759
* Start converting t/op/ref.t to use test.plNicholas Clark2005-01-061-72/+59
| | | p4raw-id: //depot/perl@23758
* Fix extensions config fields on Win32 to be as they are on UnixYitzchak Scott-Thoennes2005-01-062-45/+75
| | | | | | Subject: [PATCH] Re: lib/Config/Extensions.t fails on Win32 Message-ID: <20050105180141.GA676@efn.org> p4raw-id: //depot/perl@23757
* Correct a Greengrocer's apostrophe.Nicholas Clark2005-01-051-1/+1
| | | p4raw-id: //depot/perl@23756
* Foolishly I committed change 23753 before remembering to test withoutNicholas Clark2005-01-051-1/+1
| | | | | ithreads. No tests => bugs. This should fix them. p4raw-id: //depot/perl@23755
* Error-free constant folding is a TODONicholas Clark2005-01-051-0/+7
| | | p4raw-id: //depot/perl@23754
* Turn INIT_TLS_AND_INTERP into a static functionNicholas Clark2005-01-051-24/+17
| | | p4raw-id: //depot/perl@23753
* Shave off the explict 1; from the end of lib/Config.pmNicholas Clark2005-01-051-2/+1
| | | p4raw-id: //depot/perl@23752
* unnecessary rmdir in MakefileRobin Barker2005-01-051-1/+1
| | | | | Message-ID: <533D273D4014D411AB1D00062938C4D90849C55C@hotel.npl.co.uk> p4raw-id: //depot/perl@23751
* gcc and ld in ConfigureRobin Barker2005-01-051-2/+2
| | | | | Message-ID: <533D273D4014D411AB1D00062938C4D90849C55D@hotel.npl.co.uk> p4raw-id: //depot/perl@23750
* Avoid segfault when pthread_key_create failsGisle Aas2005-01-051-2/+1
| | | | | Message-ID: <lracroz1gg.fsf@caliper.activestate.com> p4raw-id: //depot/perl@23749
* -Duselargefiles for VMSCraig A. Berry2005-01-053-30/+173
| | | | | | | From: "Craig A. Berry" <craigberry@mac.com> Message-ID: <41DB63A6.7040504@mac.com> Date: Tue, 04 Jan 2005 21:48:54 -0600 p4raw-id: //depot/perl@23748
* Rafael spotted that my changes caused warnings. So clean up.Nicholas Clark2005-01-051-0/+1
| | | p4raw-id: //depot/perl@23747
* Update copyright years.Nicholas Clark2005-01-045-6/+6
| | | p4raw-id: //depot/perl@23746
* Make the switch statement discriminate similar names moreNicholas Clark2005-01-041-20/+13
| | | | | efficiently. p4raw-id: //depot/perl@23745
* Check all attributes in modify_SV_attributes are recognised.Nicholas Clark2005-01-042-4/+41
| | | | | Fix bug where 'assertion' was always rejected as invalid. p4raw-id: //depot/perl@23744
* Use the new ${^UTF8LOCALE} to make the test reliable.Nicholas Clark2005-01-041-9/+16
| | | p4raw-id: //depot/perl@23743
* RE: [perl #32660] INT2PTR not mentioned in perlxs(1) Robin Barker2005-01-041-1/+6
| | | | | Message-ID: <533D273D4014D411AB1D00062938C4D90849C553@hotel.npl.co.uk> p4raw-id: //depot/perl@23742
* Add ${^UTF8LOCALE} to give perl space access to PL_utf8localeNicholas Clark2005-01-042-2/+8
| | | p4raw-id: //depot/perl@23741
* Bring win32/config.* into line with win32/config_H.*Steve Hay2005-01-044-0/+4
| | | | | | so that "perl -V:usemallocwrap" tells us what the configuration is instead of saying 'UNKNOWN'. p4raw-id: //depot/perl@23740
* Math::BigInt v1.74, Math::BigRat v0.14, bignum v0.16Tels2005-01-0429-390/+921
| | | | | Message-Id: <200501011859.52858@bloodgate.com> p4raw-id: //depot/perl@23739
* Happy new yearRafael Garcia-Suarez2005-01-041-2/+2
| | | p4raw-id: //depot/perl@23738
* Return an immortal from attributes::_warn_reserved (a privateNicholas Clark2005-01-031-4/+1
| | | | | function). (saves creating a new IV) p4raw-id: //depot/perl@23736
* Change dXSTARGET to dXSTARG as recommended by Spider Boardman.Nicholas Clark2005-01-031-21/+3
| | | p4raw-id: //depot/perl@23735
* D'oh! Spurious aTHX_. Here was I thinking that my test build wasNicholas Clark2005-01-031-1/+1
| | | | | threaded, but "oh no it isn't!" :-( p4raw-id: //depot/perl@23733
* Integrate a patch from Gentoo for uclibc support.Alexey Tourbin2005-01-031-1/+5
| | | | | | | See : Subject: Re: Static linking notes --- perl5.8.6 and uClibc Message-ID: <20041228112542.GB21037@solemn.turbinal.org> p4raw-id: //depot/perl@23732
* Remove compiler warnings.Nicholas Clark2005-01-021-6/+5
| | | p4raw-id: //depot/perl@23731
* Change 23727 broke code that relied on \ being escaped.Nicholas Clark2005-01-023-3/+48
| | | | | Fix this. *Everything* should work now. p4raw-id: //depot/perl@23730