summaryrefslogtreecommitdiff
path: root/archival/libunarchive/Makefile.in (follow)
Commit message (Collapse)AuthorAgeFilesLines
* rename uncompress.c to decompress_uncompress.cEric Andersen2004-04-051-4/+4
| | | | rename unzip.c to decompress_unzip.c
* Remove trailing whitespace. Update copyright to include 2004.Eric Andersen2004-03-151-3/+3
|
* As we no longer use function pointers for read in common archiving codeGlenn L McGrath2003-11-211-3/+0
| | | | | | | archive_xread can be replaced with bb_full_read, and archive_copy_file with bb_copyfd* bb_copyfd is split into two functions bb_copyfd_size and bb_copyfd_eof, they share a common backend.
* Remove unused functionGlenn L McGrath2003-11-201-1/+0
|
* tar -Z, uncompress supportGlenn L McGrath2003-11-181-0/+1
|
* Move from read_gz to the pipe()+fork() method.Glenn L McGrath2003-11-151-0/+1
| | | | | | | | | open_transformer(), common code for pipe+fork. Function pointer for read() no longer needed. Allow inflate to be initialised with a specified buffer size to avoid over-reading. Reset static variables in inflate_get_next_window to fix a bug where only the first file in a .zip would be be extracted.
* Fix build error with tar -jGlenn L McGrath2003-11-141-1/+1
|
* Fix stupid typoEric Andersen2003-10-311-1/+1
|
* Conditionally compile some files.Glenn L McGrath2003-10-281-20/+23
| | | | | | | This hides a bug related to the new bunzip code in the tar and dpkg[-deb] applets. It will also reduce compile time a little as some unused files wont be compiled.
* Update a bunch of docs. Run a script to update my email addr.Eric Andersen2003-07-141-1/+1
|
* Fix endian probelm on PPC, i had different types for an extern variable.Glenn L McGrath2003-02-091-1/+0
|
* rpm applet by Laurence AndersonGlenn L McGrath2002-12-101-0/+1
|
* Move add_to_list from libunarchive to libbb so it can be of more general use ↵Glenn L McGrath2002-12-081-1/+0
| | | | (eg ifupdown). Changed the name to llist_add_to as i plan on adding more llist_ functions as needed (e.g. llist_free).
* Fail silently if a partial tar header is read as tar.bz2 is leaving trailing ↵Glenn L McGrath2002-11-051-0/+1
| | | | junk (not sure why), add some missing files
* enable .tar.bz2 for dpkg-debGlenn L McGrath2002-11-051-0/+1
|
* Abstract read and seek in unarchiving code, convert bunzip to file ↵Glenn L McGrath2002-11-031-2/+10
| | | | descriptors, support tar -j
* Move data_extract_all_prefix to dpkg, its only used there.Glenn L McGrath2002-11-031-1/+0
|
* Move bunzip2 idecompression code to libunarchiveGlenn L McGrath2002-11-031-0/+1
|
* Move unzip.c uncompress.c from libbb to archiveal/libunarchiveGlenn L McGrath2002-10-221-1/+3
|
* Update dpkg to use new unarchive codeGlenn L McGrath2002-10-191-0/+2
|
* Fix exclude/include problemGlenn L McGrath2002-10-191-0/+1
|
* New common unarchive code.Glenn L McGrath2002-09-251-8/+35
|
* Completely rework the config system so that it no longer annoys me to work onEric Andersen2002-04-121-0/+38
the busybox development tree. This eliminates the use of recursive make, and once again allows us to run 'make' in a subdirectory with the expected result. And things are now much faster too. Greatly improved IMHO... -Erik