From 511deab4f22a6c25f33cce1e206b656d520ab7e6 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Fri, 28 Feb 2020 01:06:35 -0500 Subject: 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 --- include/conf.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/conf.h') 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 { -- cgit