diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-02-28 01:06:35 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-02-28 01:06:35 -0500 |
commit | 511deab4f22a6c25f33cce1e206b656d520ab7e6 (patch) | |
tree | 669591ef38f61f0dc842e96b86aa1533f274269f /include/conf.h | |
parent | b6587f1d905e308cab713b1d5545e4667c80d6e4 (diff) | |
download | spmc-511deab4f22a6c25f33cce1e206b656d520ab7e6.tar.gz |
Improvements:
* Refactored a few function names
* Can read package metadata
* Can delete packages
* Can download! and install packages at the same time
* Can prompt the user before proceeding
Diffstat (limited to 'include/conf.h')
-rw-r--r-- | include/conf.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/conf.h b/include/conf.h index 99d550d..fa27b16 100644 --- a/include/conf.h +++ b/include/conf.h @@ -20,7 +20,10 @@ typedef struct { char *datadir; char *mandir; char *sysconfdir; + char *tmpdir; char *localstatedir; + char *dbdir; // $localstate/db + char *dbrecdir; // $localstate/db/records } SPM_Hierarchy; typedef struct { |