summaryrefslogtreecommitdiff
path: root/gzip.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Patch from Rodney Brown <RDBrown@mira.net>, shrinking 1.5kEric Andersen2001-08-221-27/+45
| | | | | from gzip by careful optimization. Appears to work just fine (I've tested the changes on x86, ARM, and powerpc).
* If filename is a '-' then read from stdin to stdoutGlenn L McGrath2001-07-301-1/+1
|
* Patch from Aaron Lehmann <aaronl@vitelus.com> to scrub a ton ofEric Andersen2001-07-021-1129/+193
| | | | portability junk from gzip.c, making it a zillion times more readable.
* Tolerate -q argument, if -q is passed give a warning and continue rather ↵Glenn L McGrath2001-05-071-1/+3
| | | | than just fail
* Move messages.c to libbb. Make each string in messages.c be its own .o file.Eric Andersen2001-04-251-3/+0
| | | | | | | This way, we can new get rid of all that tedious #define rubbish we used to need to enable specific messages. This way is enormously simpler, and as a bonus also ends up saving us 96 bytes. -Erik
* Eliminate spurious warning, convert to getopt, and eliminate redundant check.Matt Kraai2001-04-181-28/+20
|
* Gzip is indepenedent of gunzipGlenn L McGrath2001-04-111-0/+2
|
* Move unzip, gz_open, gz_close to libbbGlenn L McGrath2001-04-111-1/+0
|
* Add functions that were shared with gunzip.c, gunzip about to change.Glenn L McGrath2001-03-281-7/+122
|
* Clean up more local vars which shadow globalsEric Andersen2001-03-211-3/+3
| | | | -Erik
* It turns out that DODMALLOC was broken when I reorganized busybox.hEric Andersen2001-02-201-17/+6
| | | | | | header file usage before the 0.49 release. To fix it, I had to move the '#include "busybox.h"' to the end of the list of #include files. -Erik
* This patch, put together by Manuel Novoa III, is a merge of workEric Andersen2001-02-141-2/+2
| | | | | | done by Evin Robertson (bug#1105) and work from Manuel to make usage messages occupy less space and simplify how usage messages are displayed.
* Removed trailing \n from error_msg{,_and_die} messages.Matt Kraai2001-01-311-6/+6
|
* Fix header file usage -- there were many unnecessary header files included inEric Andersen2001-01-271-0/+1
| | | | | | | busybox.h which slowed compiles. I left only what was needed and then fixed up all the apps to include their own header files. I also fixed naming for pwd.h and grp.h functions. Tested to compile and run with libc5, glibc, and uClibc. -Erik
* Use busybox error handling functions wherever possible.Matt Kraai2000-12-221-18/+9
|
* Add GNU compatibile gzip -dEric Andersen2000-12-131-0/+2
|
* Changed names of functions in utility.c and all affected files, to makeMark Whitley2000-12-071-9/+9
| | | | compliant with the style guide. Everybody rebuild your tags file!
* Stop using TRUE and FALSE for exit status.Matt Kraai2000-12-011-1/+1
|
* Move flush_outbuf to the file in which it is used, and by doing so fix aMatt Kraai2000-11-081-0/+14
| | | | nasty error dealing with two different variables with the same name.
* Cleanup of duplicated symbols -- found by compiling withEric Andersen2000-11-071-26/+15
| | | | LDFLAGS += -Wl,-warn-common
* Fix error messages.Matt Kraai2000-10-231-4/+4
|
* Renamed "internal.h" to the more sensible "busybox.h".Eric Andersen2000-09-251-1/+1
| | | | -Erik
* Sigh. Seems I screwed up last time. This fixed detectingEric Andersen2000-09-011-4/+3
| | | | | | when on a console or not, and make default behavior compatible with GNU gzip... -Erik
* Some #include updates.Eric Andersen2000-08-101-1/+0
| | | | -Erik
* Fixed stdin/stdout paths so things likeEric Andersen2000-07-211-2/+16
| | | | | | | tar cvf - /etc/* | gzip -c9 >test.tgz will now work. Fix thanks to Dave Cinege <dcinege@psychosis.com> with some adjustments by me to be mroe GNU-like. -Erik
* Extract usage information into a separate file.Matt Kraai2000-07-161-13/+0
|
* Always report the applet name when doing error reporting.Matt Kraai2000-07-121-2/+2
|
* Updates to a number of apps to remove warnings/compile errors under libc5.Eric Andersen2000-06-191-6/+4
| | | | | Tested under both libc5 and libc6 and all seems well with these fixes. -Erik
* More libc portability updates, add in the website (which has not beenErik Andersen2000-05-191-3/+3
| | | | | archived previously). Wrote 'which' during the meeting today. -Erik
* Lots of updates. Finished implementing BB_FEATURE_TRIVIAL_HELPErik Andersen2000-05-121-6/+11
| | | | | | | | which lets you compile out most of the "--help" output, saving up to 17k. Renamed mnc to nc. -Erik
* Latest and greatest. Some effort at libc5 (aiming towards newlib)Erik Andersen2000-04-281-1/+0
| | | | | compatability. -Erik
* More documentation updates, and minor fixes to make things syncErik Andersen2000-04-151-1/+1
| | | | | up with the docs. -Erik
* Upates to include copyright 2000 to everythingErik Andersen2000-04-131-100/+91
| | | | -Erik
* Patch to make killall actually kill all PIDs with the specified name,Erik Andersen2000-04-071-1/+1
| | | | | | | rather then busylooping trying to kill the first one until it dies. Should be more efficient now, and will only send one signal to each specified process. -Erik
* UpdatesErik Andersen2000-02-111-9/+7
| | | | -Erik
* Some formatting updates (ran the code through indent)Erik Andersen2000-02-081-1496/+1636
| | | | -Erik
* Some busybox updates. See the changelog for details if you care.Erik Andersen2000-01-251-25/+2
| | | | -Erik
* Reworked the source so it will compile and run under glibc 2.0.7Erik Andersen1999-12-171-0/+4
| | | | | | and linux kernel 2.0.36 (though the dubious reasons why someone would want to do that defy imagination ;) -Erik
* StufEric Andersen1999-11-161-1/+0
|
* Latest and greatestEric Andersen1999-11-121-34/+64
| | | | -Erik
* StuffEric Andersen1999-11-111-28/+63
|
* StufEric Andersen1999-11-111-12/+25
|
* Minor stuf0_33Eric Andersen1999-11-061-2/+0
|
* StufEric Andersen1999-10-231-26/+2
|
* Added sfdisk. Ststic-ified a bunch of stuff.Eric Andersen1999-10-191-9/+9
|
* More stuffEric Andersen1999-10-161-9/+9
|
* More stuff.Eric Andersen1999-10-061-9/+9
|
* Initial revision0_29alpha2Eric Andersen1999-10-051-0/+3231