aboutsummaryrefslogtreecommitdiff
path: root/archival/unlzma.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* bunzip2/gunzip/uncompress/unlzma: merge into common code -Denis Vlasenko2007-03-071-65/+0
| | | | fix few corner cases, reduce size by 450 bytes. Update testsuite.
* suppress warnings about easch <applet>_main() havingDenis Vlasenko2007-02-031-0/+1
| | | | no preceding prototype
* inline strcmp(s, "-") [actually macro-ize it for now - gcc is too stupid]Denis Vlasenko2006-12-161-1/+1
|
* bb_applet_name -> applet_nameDenis Vlasenko2006-10-031-1/+1
|
* getopt_ulflags -> getopt32.Denis Vlasenko2006-10-031-2/+2
| | | | | | | | It is impossible to formulate sane ABI based on size of ulong because it can be 32-bit or 64-bit. Basically it means that you cannot portably use more that 32 option chars in one call anyway... Make it explicit.
* g[un]zip: add support for -v (verbose).Denis Vlasenko2006-10-011-5/+7
| | | | | Add CONFIG_DESKTOP, almost all bloat from this change is hidden under that.
* Yet another silly little byte saving. couldn't -> cannotDenis Vlasenko2006-09-291-2/+2
|
* archival: added O_TRUNC so that when we overwrite files on unpack,Denis Vlasenko2006-09-031-5/+6
| | | | | | we truncate them. Also spotted & fixed hard to trigger bug with extension handling.
* Remove bb_ prefixes from xfuncs.c (and a few other places), consolidateRob Landley2006-08-031-8/+2
| | | | | | | | | | things like xasprintf() into xfuncs.c, remove xprint_file_by_name() (it only had one user), clean up lots of #includes... General cleanup pass. What I've been doing for the last couple days. And it conflicts! I've removed httpd.c from this checkin due to somebody else touching that file. It builds for me. I have to catch a bus. (Now you know why I'm looking forward to Mercurial.)
* Standardize on the vi editing directives being on the first line."Robert P. J. Day"2006-07-021-1/+1
|
* Use xstat() instead of if(stat()) die()Rob Landley2006-06-131-4/+1
|
* Patch from Denis Vlasenko: unlzma was make files with mode 777. TweakRob Landley2006-06-131-1/+6
| | | | everything to do stat() and use xopen3().
* Patch from Aurelien Jacobs to add unlzma. (A new decompression type,Rob Landley2006-01-201-0/+65
see www.7-zip.org)