summaryrefslogtreecommitdiff
path: root/dpkg.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Apply Vladimir's latest cleanup patch.Eric Andersen2001-04-091-10/+10
| | | | -Erik
* Reorganise status field to use 3 chars instead of one bit shifted long int.Glenn L McGrath2001-04-081-131/+98
| | | | Generates status file properly now, not compatable with full dpkg yet.
* Use create_path instead of mkdirGlenn L McGrath2001-04-081-4/+3
|
* It now correctly backs up the (still corrupt) status fileGlenn L McGrath2001-04-081-10/+21
|
* Some fixes, but still broken... (cont)Glenn L McGrath2001-04-081-136/+162
| | | | | | | | | Make better use of some libbb functions New remove dir code to avoid depending on the rm applet dont use copy_file() it doesnt fail elegantly Use getopt. Generate correct /var/lib/dpkg/info/ files Status file is broken, working on it now
* It seems all the stdout munging was useless anyways, sinceEric Andersen2001-04-051-3/+0
| | | | | | deb_extract and all its called functions do nothing with stdout anyways. Axe that stuff. -Erik
* A number of cleanups. Now compiles with libc5, glibc, and uClibc. Fix a fewEric Andersen2001-04-051-10/+3
| | | | | | shadowed variables. Move (almost) all syscalls to libbb/syscalls.c, so I can handle them sanely and all at once. -Erik
* If only BB_DPKG was enabled in Config.h, busybox would not build; it'd say:Mark Whitley2001-03-151-1/+1
| | | | | | | | | dpkg.c:18: #error It looks like you are using libc5, which does not support dpkg.c:19: #error tfind(). tfind() is used by busybox dpkg. dpkg.c:20: #error Please disable BB_DPKG. Sorry. This was fixed by changing the || to an && in the preprocessor. (We've changed the logic in there too many times.) Found using multibuild.pl.
* Fix from Manuel for a silly thinko on my part.Eric Andersen2001-03-141-2/+2
|
* dpkg used tfind, which doesn't work with libc5. Print a friendy errorEric Andersen2001-03-141-0/+9
| | | | | should someone try to use it... -Erik
* A cleanup patch from Jeff Garzik to static-ify a number ofEric Andersen2001-03-091-3/+3
| | | | namespace polluting things that really should be static.
* fix a few mallocs to be xmallocs.Eric Andersen2001-02-151-2/+2
| | | | -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.
* Closer integration with dpkg-deb and other busybox functions.Glenn L McGrath2001-02-121-129/+140
| | | | Hopefully simplified some code (works for me).
* More style changesGlenn L McGrath2001-02-111-150/+175
|
* Style changes; use get_line_from_file from utilitiesGlenn L McGrath2001-02-111-173/+132
|
* Use copy_file from utilty.c, remove some char definesGlenn L McGrath2001-02-101-41/+10
|
* Bug fix, rename status file, cleanupsGlenn L McGrath2001-02-101-71/+51
|
* Replace status defines with const int to conform to sytle guide, adds 32 bytesGlenn L McGrath2001-02-101-61/+58
|
* Initial importGlenn L McGrath2001-02-101-0/+905