summaryrefslogtreecommitdiff
path: root/ext
Commit message (Collapse)AuthorAgeFilesLines
* Integrate changes #9259,9260 from maintperl into mainline.Jarkko Hietaniemi2001-03-201-2/+0
| | | | | | | | | | | | | Subject: [MacPerl-Porters] [PATCH] POSIX, File::Path (Mac OS) for 5.6.1 and 5.7 Subject: [PATCH perl-5.6.1-TRIAL3/run.c] printf warning p4raw-link: @9260 on //depot/maint-5.6/perl: b83ee361c1b8f0045f0125bffa546780643848c4 p4raw-link: @9259 on //depot/maint-5.6/perl: 5a271d91b72f558a378756b049d1040c9ff0a63c p4raw-id: //depot/perl@9261 p4raw-integrated: from //depot/maint-5.6/perl@9258 'copy in' lib/File/Path.pm (@8175..) 'merge in' ext/POSIX/POSIX.xs (@8885..) run.c (@8987..)
* Integrate changes #9244,9247,9250 from maintperl into mainline.Jarkko Hietaniemi2001-03-192-3/+10
| | | | | | | | | | | | Dynaloading in 64-bit AIX with vac. p4raw-link: @9250 on //depot/maint-5.6/perl: cbdca039b5e144d1778a3f526024bb6da2a58a72 p4raw-link: @9247 on //depot/maint-5.6/perl: 1d70f4d9891a32fb9ebe5b896f754b8c759ffece p4raw-link: @9244 on //depot/maint-5.6/perl: f816f13eaa91bfe02a64ccda4a80eee889237c24 p4raw-id: //depot/perl@9251 p4raw-integrated: from //depot/maint-5.6/perl@9243 'copy in' ext/DynaLoader/hints/aix.pl (@5902..) ext/DynaLoader/dl_aix.xs (@9247..) 'merge in' hints/aix.sh (@8537..)
* UTF-X encoding invariance for Encode:Nick Ing-Simmons2001-03-183-60/+10
| | | | | | | | | | | | - move Encode::utf8_encode to utf8::encode (likewise decode,upgrade,downgrade,valid) - move the XS code for those to universal.c (so in miniperl) - add utf8::unicode_to_native and its inverse to allow EBCDIC to work in true unicode. - change ext/Encode/compile to use above. - Fix t/lib/encode.t for above - Teach t/lib/b.t to expect -uutf8 - In utf8.c look for SWASHNEW rather than just utf8:: package to see if utf8.pm is needed. p4raw-id: //depot/perlio@9198
* Re-apply #9024 as the Storable 1.0.11 (#9069) overwroteJarkko Hietaniemi2001-03-161-2/+6
| | | | | a change needed to work around an AIX compiler bug. p4raw-id: //depot/perl@9179
* Make the Filter::Util:Call files have their own copiesJarkko Hietaniemi2001-03-162-1/+28
| | | | | of the Perl standard module licensing, from Paul Marquess. p4raw-id: //depot/perl@9177
* more pod patchesMichael Stevens2001-03-1619-85/+88
| | | | | Message-ID: <20010315212518.A18870@firedrake.org> p4raw-id: //depot/perl@9176
* ext/GDBM_File GDBM_NOLOCK constantPaul Lindner2001-03-162-1/+8
| | | | | Message-ID: <20010316112803.A7577@inuus.com> p4raw-id: //depot/perl@9174
* Upgrade to Storable 1.0.11, from Raphael Manfredi.Jarkko Hietaniemi2001-03-153-23/+78
| | | p4raw-id: //depot/perl@9169
* Retract #9136: breaks threading (and binary compatibility).Jarkko Hietaniemi2001-03-141-24/+1
| | | p4raw-id: //depot/perl@9155
* (Retracted by #9155)Jens-Uwe Mager2001-03-131-1/+24
| | | | | | Subject: Re: [gsar@ActiveState.com: v5.6.1 trial2 is available] Message-ID: <20010221213203.A18340@ans.helios.de> p4raw-id: //depot/perl@9136
* Workaround for the buggy ("internal compiler error")Jarkko Hietaniemi2001-03-131-0/+19
| | | | | | | AIX C compiler 5.0.1.0: skip the optimization for regcomp.c (and ext/re/re_comp.c). The MakeMaker dark magic courtesy of Andreas König. p4raw-id: //depot/perl@9124
* Integrate mainline (for regexp stuff).Nick Ing-Simmons2001-03-114-32/+48
|\ | | | | p4raw-id: //depot/perlio@9103
| * Use #if defined(USE_PERLIO) && !defined(USE_SFIO) instead of justJarkko Hietaniemi2001-03-101-2/+2
| | | | | | | | | | | | #ifdef USE_PERLIO in Encode.xs so that the perlio symbols don't pollute the symbolspace if using sfio. p4raw-id: //depot/perl@9100
| * Portability fixes for Mac OS / bleadperlChris Nandor2001-03-103-31/+47
| | | | | | | | | | Message-Id: <p05010401b6d02f70211f@[10.0.1.177]> p4raw-id: //depot/perl@9099
* | USE_SFIO issues as observed by Chris Nandor <pudge@pobox.com>Nick Ing-Simmons2001-03-111-2/+2
|/ | | | | | - exclude layer syms in makedef.pl for sfio - also inhibit Encode from trying to build ":encode()" layer. p4raw-id: //depot/perlio@9102
* EBCDIC sanity - phase INick Ing-Simmons2001-03-101-2/+2
| | | | | | | | | | | | | | - rename utf8/uv functions to indicate what sort of uv they provide (uvuni/uvchr) - use utf8n_xxxx (c.f. pvn) for forms which take length. - back out vN.N and $^V exceptions to e2a/a2e - make "locale" isxxx macros be uvchr (may be redundant?) Not clear yet that toUPPER_uni et. al. return being handled correctly. The tr// and rexexp stuff still needs an audit, assumption is they are working in Unicode space. Need to provide v5.6 names for XS modules (decide is uni or chr ?). p4raw-id: //depot/perlio@9096
* Regen perlapi, perltoc.Jarkko Hietaniemi2001-03-091-0/+5
| | | p4raw-id: //depot/perl@9088
* A modified version ofanders@broadcom.com2001-03-092-35/+94
| | | | | | | | | | | | | | Subject: [ID 20010307.005] POSIX::sigaction has various problems Message-Id: <200103072235.OAA25368@dt-sj1-130.sj.broadcom.com> Currently the sigaction.t test #6 fails (and is fudged to look like an "ok") in Linux (at least in Debian 2.2 Linux 2.4.2 x86). This may well be a genuine bug in Linux sigaction() (since at least Tru64, Solaris, and HP-UX disagree with Linux). Anyone with POSIX / SUSv2 tome handy? The problem is that the flags of the oldaction don't match with the flags in the previously installed disposition. p4raw-id: //depot/perl@9086
* Re: [ PATCH perl@8956 ] new debug option -DR shows ref countsDave Mitchell2001-03-091-5/+3
| | | | | Message-Id: <200103081206.MAA06281@tiree.fdgroup.co.uk> p4raw-id: //depot/perl@9084
* More Encode alias tidying.Nick Ing-Simmons2001-03-053-20/+283
| | | p4raw-id: //depot/perlio@9051
* The mapping of ISO Latin X to ISO 8859-Y is tricky.Jarkko Hietaniemi2001-03-051-3/+18
| | | p4raw-id: //depot/perl@9045
* Add more ISO 8859 encoding aliases.Jarkko Hietaniemi2001-03-051-1/+2
| | | p4raw-id: //depot/perl@9041
* Encode implementation "completion"Nick Ing-Simmons2001-03-0520-261/+457
| | | | | | | | | | Implement and document define_encoding() Implement and document encoding aliases including define_alias() Make Encode::XS use define_encoding() rather than back-door. Move run-time *.enc to separate Encode::Tcl module. Make 'compile' honour <codeset_name> Change canonical names of to iso-8859-* and US-ascii. p4raw-id: //depot/perlio@9032
* Re: Smoking patch 8898 for perl v5.7.0 on aix 4.3.0.0H.Merijn Brand2001-03-041-2/+5
| | | | | | | Message-Id: <20010302182416.1BF4.H.M.BRAND@hccnet.nl> Casting problem. p4raw-id: //depot/perl@9024
* Integrate mainline.Nick Ing-Simmons2001-03-013-5/+5
|\ | | | | p4raw-id: //depot/perlio@8976
| * Re: Errors in core PODsMichael Stevens2001-02-281-1/+1
| | | | | | | | | | Message-ID: <20010223154756.A7723@firedrake.org> p4raw-id: //depot/perl@8965
| * Re: sync sync sync: have I missed any patches?Tim Jenness2001-02-282-4/+4
| | | | | | | | | | | | | | | | In-Reply-To: <20010227140737.Y10633@chaos.wustl.edu> Message-ID: <Pine.LNX.4.30.0102271322070.8623-100000@lapaki.jach.hawaii.edu> Replace djSP with dSP. p4raw-id: //depot/perl@8963
* | Add charname comments to .ucm files writen by 'compile',Nick Ing-Simmons2001-02-2822-5174/+5221
|/ | | | | | also order charmaps in those files by source encoding. regenerate distrubuted .ucm files p4raw-id: //depot/perlio@8969
* perlglob.exe needs to be found in Win32, patch fromJarkko Hietaniemi2001-02-261-1/+4
| | | | | | Vadim Konovalov. Nick I-S comments: "Perhaps a lingering glob() which needs external glob at mini-perl time." p4raw-id: //depot/perl@8943
* Encode implementations docs.Nick Ing-Simmons2001-02-251-2/+148
| | | p4raw-id: //depot/perlio@8938
* Change method names in Encode implementation classes to somethingNick Ing-Simmons2001-02-252-19/+35
| | | | | less confusing (preparing to "go public"). p4raw-id: //depot/perlio@8927
* Checked in the wrong one ...Nick Ing-Simmons2001-02-251-6/+5
| | | p4raw-id: //depot/perlio@8925
* Encode API documentation nd tidy up.Nick Ing-Simmons2001-02-242-418/+519
| | | | | | | Minor additions to test. Tweaks sv_utf8_upgrade() to force SvPV, and always SvUTF8_on and return length. Adds STRLEN to standard typemap. p4raw-id: //depot/perlio@8923
* Integrate change #8665 from maintperl to mainline,Jarkko Hietaniemi2001-02-221-3/+2
| | | | | | | | | IA64-induced POSIX::SigSet masking with IVs instead of NVs. p4raw-link: @8665 on //depot/maint-5.6/perl: 906def0b44c94e1ecc41e6a82c183f50655aee49 p4raw-id: //depot/perl@8887 p4raw-integrated: from //depot/maint-5.6/perl@8884 'merge in' ext/POSIX/POSIX.xs (@8664..)
* Filter::Util::Call update to 1.05, from Paul Marquess.Jarkko Hietaniemi2001-02-201-1/+2
| | | p4raw-id: //depot/perl@8851
* strict-w-proof the ?DBM_File, from Paul Marquess.Jarkko Hietaniemi2001-02-204-5/+5
| | | p4raw-id: //depot/perl@8848
* [patch] -Wall cleanup round 2Doug MacEachern2001-02-1813-46/+32
| | | | | Message-ID: <Pine.LNX.4.21.0102181304520.10021-100000@mako.covalent.net> p4raw-id: //depot/perl@8837
* Upgrade to Storable 1.0.10, from Raphael Manfredi.Jarkko Hietaniemi2001-02-173-126/+352
| | | p4raw-id: //depot/perl@8816
* Add header for LIB$ prototypes (C. Berry)Charles Bailey2001-02-081-0/+1
| | | p4raw-id: //depot/vmsperl@8719
* SYN SYNCharles Bailey2001-02-082-3/+5
| | | p4raw-id: //depot/vmsperl@8718
* SYN SYNCharles Bailey2001-01-2439-200/+6611
| | | p4raw-id: //depot/vmsperl@8535
* Once again syncing after too long an absenceCharles Bailey2001-01-0880-468/+3662
| | | p4raw-id: //depot/vmsperl@8367
* SYN SYNCharles Bailey2000-10-20118-851/+30110
| | | p4raw-id: //depot/vmsperl@7375
* YA resync with mainstem, including VMS patches from othersCharles Bailey2000-08-0417-333/+720
| | | p4raw-id: //depot/vmsperl@6514
* Resync with mainline prior to post-5.6.0 updatesCharles Bailey2000-05-2335-228/+386
| | | p4raw-id: //depot/vmsperl@6111
* Add VMS' default to the CGI.pm temp list (should update to File::Spec)Charles Bailey2000-03-151-4/+1
| | | | | p4raw-id: //depot/vmsperl@5750 p4raw-integrated: from //depot/perl@5749 'merge in' ext/File/Glob/Glob.pm (@5507..)
* Resync with mainline post RC1Charles Bailey2000-03-1311-52/+56
|\ | | | | p4raw-id: //depot/vmsperl@5690
| * make Dump() call the XSUB implementation transparently (modifiedGurusamy Sarathy2000-03-082-31/+17
| | | | | | | | | | version of patch suggested by David Boyce <dsb@world.std.com>) p4raw-id: //depot/perl@5621
| * omit XSLoader from bytecode dumpsGurusamy Sarathy2000-03-073-3/+3
| | | | | | p4raw-id: //depot/perl@5597
| * get ByteLoader working againGurusamy Sarathy2000-03-075-14/+32
| | | | | | p4raw-id: //depot/perl@5593