summaryrefslogtreecommitdiff
path: root/ext
Commit message (Collapse)AuthorAgeFilesLines
* perl 5.003_03: [patch introduction and re-organisation]perl-5.003_03Andy Dougherty1996-08-251-1134/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | # This is my patch perl5.003_03.pat to perl5.003_02 # The full description is below. # Please execute the following commands before applying this patch. # (You can feed this patch to 'sh' to do so.) # Andy Dougherty <doughera@lafcol.lafayette.edu> # Absorbed into Changes5.002 rm -f Changes.Conf # Not needed. rm -f ext/POSIX/mkposixman.pl # Moved to README.os2. I'm not sure why the README files are # here rather than in the appropriate subdirectories. rm -f os2/README # Not needed. rm -f pod/Makefile.PL # New test for bit ops touch t/op/bop.t # Patches that create new tests don't always make them executable. chmod +x t/*/*.t # Create a new directory for Porting and Patching info. mkdir Porting exit 0 This is patch perl5.003_03.pat to perl version 5.003_02. This takes you from 5.003_02 to 5.003_03. To apply this patch, run the above commands, cd to your perl source directory and then type patch -p1 -N < perl5.003_03.pat The changes are described after each /^Index/ line below. This is designed so you can examine each change with a command such as csplit -k perl5.003_03.pat '/^Index:/' '{99}' Patch and enjoy, Andy Dougherty doughera@lafcol.lafayette.edu Dept. of Physics Lafayette College, Easton PA 18042
* perl 5.003_03: ext/util/make_extPerl 5 Porters1996-06-211-3/+2
| | | | | Typo change. Get rid of unused altmake.
* Change the Mymalloc to match Perl_malloc in perl.h.Perl 5 Porters1996-08-201-3/+5
|
* Add support for tied filehandles.Perl 5 Porters1996-08-251-1/+1
|
* Clean up docmentation installation errors.Perl 5 Porters1996-08-243-1/+30
|
* perl 5.003_02: [changes beteween cumulative patches and tarball release]perl-5.003_02Larry Wall1996-08-101-0/+0
| | | | | This commit just represents the minor differences between applying the patch from 5.003_01 to 5.003_02 and the 5.003_02 release tarball.
* perl 5.003_02: [no incremental changelog available]Larry Wall1996-08-1018-154/+1295
|
* perl 5.003_01: [patch re-organisation and patch series introduction]Charles Bailey1996-07-314-3033/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This is my patch _01 to perl5.003. This patch contains the last few months' worth of bugfixes and additions, since the patch to version 5.003 was deliberately kept small. A summary of major revisions and additions can be found in the diff of the Changes file from the standard distribution, which is the first diff in the patch below. The detailed changes to each file are described at the head of the diff for that file, on lines beginning with #~, so you can extract the comments by saying perl -ne 'print if /^(?:#~|diff)/'. This patch is a series of context diffs, since some people have mentioned that their copy of patch can't handle unidiffs. Please apply it to a clean copy of perl5.003 using patch -p1 -N. Before applying the patch, please execute the following commands, or their moral equivalent; you may feed this patch to /bin/sh in order to do so. Enjoy. Charles Bailey <bailey@genetics.upenn.edu> July 31, 1996 [ re-organisation changes: # The code for the Safe extension has been subsumed into the Opcode extension, # though the calling sequence hasn't changed rm -rf ext/Safe rm -f t/lib/safe.t # Removed due to copyright notice. Text documentation is supplied. rm -f ext/SDBM_File/sdbm/readme.ps # Changes subsumed into new version of DB_File rm -f os2/diff.db_file # Moved to main source directory as README.os2 rm -f os2/README ]
* Correct CODE block declarationPerl 5 Porters1996-07-251-1/+1
|
* Change name in Makefile.PL for clarityPerl 5 Porters1996-06-171-8/+7
|
* Correct order of arguments in setcc documentationPerl 5 Porters1996-06-181-1/+1
|
* New Opcode extension subsumes SafePerl 5 Porters1996-06-181-0/+555
|
* Add Opcode extensionPerl 5 Porters1996-06-184-0/+1086
|
* Add IO extensionPerl 5 Porters1996-07-279-0/+1976
|
* Quote string argument in example -- necessary if using strict subsPerl 5 Porters1996-07-154-4/+4
|
* perl 5.003_01: ext/FileHandle/FileHandle.xsPerl 5 Porters1996-07-271-2/+1
| | | | | Don't repeat inclusion of stdio.h Use Fflush() macro to allow for OS-specific overrides
* Close file only once during object destruction.Perl 5 Porters1996-07-231-1/+13
|
* Add cast to malloc to calm cc when system headers decalre int malloc()Perl 5 Porters1996-07-031-1/+1
|
* Add NeXTSTEP/OPENSTEP 4 supportPerl 5 Porters1996-07-101-24/+106
|
* Use explicit dependency to select XS file, and suffix rules from therePerl 5 Porters1996-06-171-4/+4
|
* Update to version 1.02Perl 5 Porters1996-07-054-245/+661
|
* perl 5.003: ext/NDBM_File/NDBM_File.pmPerl 5 Porters1996-06-241-1/+5
| | | | | | C<use strict> with Perl 5.002 or later to avoid confusing warnings if installed in a library also used by Perl 5.001m. (It still won't work with 5,001m, but the error message now states this more clearly.)
* Add NAME attribute to suppress MakeMaker "guess" warningPerl 5 Porters1996-06-2311-1/+12
|
* perl 5.002_01: ext/POSIX/POSIX.xsPerl 5 Porters1996-03-151-11/+123
| | | | | | VMS update: emulate several near misses in signal handling, and slightly different header file structure. (Yes, it's not strictly POSIX, but it's close.)
* perl 5.002_01: ext/FileHandle/FileHandle.pmPerl 5 Porters1996-03-171-25/+24
| | | | | Remove English, since it slows both FileHandle initialization and regexp evaluation throughout any program that uses FileHandle
* Convert to use $^O and Config's $dl_so instead of hard-wired .oPerl 5 Porters1996-03-171-6/+7
|
* OS/2 updatePerl 5 Porters1996-03-151-1/+2
|
* perl 5.002perl-5.002Andy Dougherty1996-02-286-6/+87
| | | | | [editor's note: changes seem to be mostly module updates, documentation changes and some perl API macro additions]
* Part of the MakeMaker 5.21 update.Perl 5 Porters1996-02-071-1/+1
|
* perl 5.002gamma: ext/Safe/Safe.xsPerl 5 Porters1996-02-111-2/+2
| | | | | Added +1 to maxo at Malcom's suggestion. AIX will probably stil get bad free().
* VERSION PatchPaul Marquess1996-02-061-4/+8
| | | | TieHash -> Tie::Hash
* Re: NETaa14816: tzname[] and SunOS - Here's a patchTim Bunce1996-02-031-10/+45
|
* VERSION PatchPaul Marquess1996-02-063-14/+25
| | | | TieHash -> Tie::Hash Patch.
* perl 5.002gamma: ext/FileHandle/FileHandle.xsPerl 5 Porters1996-02-101-2/+20
| | | | | | Allow compilation even if f[sg]etpos not available. Allow compilation even if setvbuf() is not available.
* perl 5.002gamma: ext/FileHandle/FileHandle.pmPerl 5 Porters1996-02-061-5/+27
| | | | | | | | | | | | | | | | >From pmarquess@bfsec.bt.co.ukTue Feb 6 09:38:27 1996 >Date: Tue, 6 Feb 96 14:09:49 GMT >From: Paul Marquess <pmarquess@bfsec.bt.co.uk> >To: perl5-porters@africa.nicoh.com >Cc: pmarquess@bfsec.bt.co.uk >Subject: VERSION Patch >From chip@atlantic.netTue Feb 6 12:14:01 1996 >Date: Tue, 6 Feb 1996 12:03:43 -0500 (EST) >From: Chip Salzenberg <chip@atlantic.net> >To: andreas.koenig@mind.de >Cc: perl5-porters@africa.nicoh.com >Subject: Beta3: Allow 'use FileHandle' in miniperl
* VMS-specific patch.Perl 5 Porters1996-02-081-1/+5
|
* Change comp.lang.perl to comp.lang.perl.misc.Perl 5 Porters1996-02-081-1/+1
|
* VERSION PatchPaul Marquess1996-02-066-15/+27
|
* VERSION PatchPaul Marquess1996-02-061-12/+25
| | | | TieHash -> Tie::Hash
* perl5.002beta3Perl 5 Porters1996-02-0228-333/+934
| | | | | | | | | | | | | | | | | [editor's note: no patch file was found for this release, so no fine-grained changes] I can't find the password for our ftp server, so I had to drop it into ftp://ftp.sems.com/pub/incoming/perl5.002b3.tar.gz, which is a drop directory you can't ls. The current plan is that Andy is gonna whack on this a little more, and then release a gamma in a few days when he's happy with it. So don't get carried away. This is now *late* beta. In other words, have less than the appropriate amount of fun. :-) Larry
* Use unsigned shorts for ports.Perl 5 Porters1996-01-081-3/+3
|
* Patch for older compilers which had namespace confusion.Perl 5 Porters1996-01-051-4/+4
|
* Patch from Andreas.Perl 5 Porters1996-01-111-2/+13
|
* Give correct prototype for free.Perl 5 Porters1996-01-111-1/+1
|
* Make the NAME section a legal paragraph.Perl 5 Porters1996-01-121-0/+1
|
* perl 5.002beta2 patchPerl 5 Porters1996-01-1310-14/+47
| | | | | Disable prototypes. Disable pod2man.
* Updated to Oct 31, 1995 version.Perl 5 Porters1996-01-021-10/+39
|
* VMS-specific updates.Perl 5 Porters1996-01-021-5/+11
|
* This is patch.2b1g to perl5.002beta1.Andy Dougherty1995-12-217-32/+915
| | | | | | | | | | | | | | | cd to your perl source directory, and type patch -p1 -N < patch.2b1g This patch is just my packaging of Tom's documentation patches he released as patch.2b1g. Patch and enjoy, Andy Dougherty doughera@lafcol.lafayette.edu Dept. of Physics Lafayette College, Easton PA 18042
* This is patch.2b1f to perl5.002beta1.Andy Dougherty1995-12-084-98/+1486
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | cd to your perl source directory, execute the command above, and type patch -p1 -N < patch.2b1f This patch includes patches for the following items: Changes.Conf Configure MANIFEST Makefile.SH XSUB.h ext/POSIX/POSIX.pm ext/POSIX/POSIX.pod ext/POSIX/POSIX.xs ext/Socket/Socket.pm gv.c lib/Cwd.pm lib/Sys/Syslog.pm lib/diagnostics.pm t/lib/socket.t toke.c The changes are described after each /^Index/ line below. These are each described in detail below, after the corresponding index line. Patch and enjoy, Andy Dougherty doughera@lafcol.lafayette.edu Dept. of Physics Lafayette College, Easton PA 18042