summaryrefslogtreecommitdiff
path: root/src/Makefile
AgeCommit message (Collapse)AuthorFilesLines
2010-06-05all: rework how arrays workTimo Teräs1-1/+1
Instead of having a null pointer, use a dummy array which just says the array is empty. This helps in multiple places of the code which would otherwise need explicitly need to check first if the array exists. This has been cause of multiple seg.faults in the past as the array check is easily omitted. This also removes (or fixes) all existing checks accordingly.
2009-08-04fix: new applet to reinstall and fix packageTimo Teras1-1/+1
also makes it possibly to upgrade package without adding it to top-level deps. fixes #69.
2009-07-31apk: use *at instead of chdir+normal file syscallTimo Teras1-0/+1
this way we never change cwd, and relative filenames are always parsed consistently. this also helps filename construction in many places. this patch also changes '--root' to override location of all configuration to be in the new root. previously it depended on the file which one was used.
2009-07-29build: make install depend on main targetsTimo Teras1-1/+1
apparently the double colon rule dependencies affect only the specific rule-set.
2009-07-17verify: new applet (ref #46)Timo Teras1-1/+1
an utility to check package signature and integrity.
2009-07-08build: link zlib dynamically, use --as-neededTimo Teras1-3/+5
use pkgconfig of zlib instead of hard requiring it. and link in the pkg-config libs with --as-needed as not all of the openssl libs are really required.
2009-07-08csum: use openssl insteadTimo Teras1-3/+9
instead of having static md5 implemenation, use the openssl library for digest functions.
2009-06-29cache: new applet (ref #49)Timo Teras1-1/+1
Administrative tool to download or delete files to/from the cache.
2009-06-25upgrade: new appletTimo Teras1-1/+1
Currently just goes through all world dependencies and updates them where possible (ref #51).
2009-04-21Makefile: add -nopie to LDFLAGSNatanael Copa1-0/+1
2009-04-16db: cache index files, 'update' appletTimo Teras1-2/+2
Cache non-local index files always locally. Introduce 'update' applet to force refresh of cached index files. Fixes #19.
2009-04-16build: rewrite make system to something slightly similar to kbuildTimo Teras1-45/+12
Tracks now probler header file dependencies and command line parameters used to build files. E.g. changing CFLAGS rebuild all C-files. And changing version rebuild now the files where it's used.
2009-04-15fetch: new applet to download .apk filesTimo Teras1-0/+1
Fixes #24.
2009-03-07Created search appletCameron Banta1-0/+1
2009-01-16Makefile: added 'make static' target to build apk.staticNatanael Copa1-0/+3
2009-01-14audit: new command to check changed filesTimo Teras1-0/+1
Currently only implement --backup to get list of (config) files in protected directories to backup. This also fixes a database corruption bug in database.c.
2009-01-13add: --initdb to replace create appletTimo Teras1-1/+0
2009-01-09Makefile: build the info appletNatanael Copa1-0/+1
2008-11-28io: prepartions for url handlingTimo Teras1-0/+1
2008-11-12build: remove pthreads referencesTimo Teras1-1/+1
2008-11-07use zlib internally to decompressTimo Teras1-1/+3
2008-04-21Argument parsing. Some other stuff too.Timo Teras1-0/+2
2008-04-17Initial commit of some stuff written so far. Still in state of flux. ExpectTimo Teras1-0/+39
breakage and major changes.