This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add Compress-Raw-Bzip2, by Paul Marquess
authorRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Sun, 1 Mar 2009 22:37:53 +0000 (23:37 +0100)
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>
Sun, 1 Mar 2009 22:37:53 +0000 (23:37 +0100)
commitbdb7fd9ff27337264f70f75183d41d2995ccc57c
treefa4ef8bc3df0c65fe7ba5f4201918f52cc202c61
parent223ddb2fc03e891f3a0b0780dab3cb2b4a0bb763
Add Compress-Raw-Bzip2, by Paul Marquess
33 files changed:
MANIFEST
Porting/Maintainers.pl
ext/Compress-Raw-Bzip2/Bzip2.xs [new file with mode: 0644]
ext/Compress-Raw-Bzip2/Changes [new file with mode: 0644]
ext/Compress-Raw-Bzip2/MANIFEST [new file with mode: 0644]
ext/Compress-Raw-Bzip2/Makefile.PL [new file with mode: 0644]
ext/Compress-Raw-Bzip2/README [new file with mode: 0644]
ext/Compress-Raw-Bzip2/bzip2-src/.gitignore [new file with mode: 0644]
ext/Compress-Raw-Bzip2/bzip2-src/LICENSE [new file with mode: 0644]
ext/Compress-Raw-Bzip2/bzip2-src/blocksort.c [new file with mode: 0644]
ext/Compress-Raw-Bzip2/bzip2-src/bzip2.c [new file with mode: 0644]
ext/Compress-Raw-Bzip2/bzip2-src/bzip2recover.c [new file with mode: 0644]
ext/Compress-Raw-Bzip2/bzip2-src/bzlib.c [new file with mode: 0644]
ext/Compress-Raw-Bzip2/bzip2-src/bzlib.h [new file with mode: 0644]
ext/Compress-Raw-Bzip2/bzip2-src/bzlib_private.h [new file with mode: 0644]
ext/Compress-Raw-Bzip2/bzip2-src/compress.c [new file with mode: 0644]
ext/Compress-Raw-Bzip2/bzip2-src/crctable.c [new file with mode: 0644]
ext/Compress-Raw-Bzip2/bzip2-src/decompress.c [new file with mode: 0644]
ext/Compress-Raw-Bzip2/bzip2-src/dlltest.c [new file with mode: 0644]
ext/Compress-Raw-Bzip2/bzip2-src/huffman.c [new file with mode: 0644]
ext/Compress-Raw-Bzip2/bzip2-src/mk251.c [new file with mode: 0644]
ext/Compress-Raw-Bzip2/bzip2-src/randtable.c [new file with mode: 0644]
ext/Compress-Raw-Bzip2/bzip2-src/spewG.c [new file with mode: 0644]
ext/Compress-Raw-Bzip2/bzip2-src/unzcrash.c [new file with mode: 0644]
ext/Compress-Raw-Bzip2/fallback/constants.h [new file with mode: 0644]
ext/Compress-Raw-Bzip2/fallback/constants.xs [new file with mode: 0644]
ext/Compress-Raw-Bzip2/lib/Compress/Raw/Bzip2.pm [new file with mode: 0644]
ext/Compress-Raw-Bzip2/pod/FAQ.pod [new file with mode: 0644]
ext/Compress-Raw-Bzip2/private/MakeUtil.pm [new file with mode: 0644]
ext/Compress-Raw-Bzip2/t/000prereq.t [new file with mode: 0644]
ext/Compress-Raw-Bzip2/t/01bzip2.t [new file with mode: 0644]
ext/Compress-Raw-Bzip2/t/99pod.t [new file with mode: 0644]
ext/Compress-Raw-Bzip2/typemap [new file with mode: 0644]