summaryrefslogtreecommitdiff
path: root/lib/libalpm/handle.h
diff options
context:
space:
mode:
authorAllan McRae <allan@archlinux.org>2019-03-02 18:57:20 +1000
committerAllan McRae <allan@archlinux.org>2019-03-07 11:12:12 +1000
commitc0e9be7973be6c81b22fde91516fb8991e7bb07b (patch)
tree348b48a19e4ed1ccfb3ca2880add40b69782b0c6 /lib/libalpm/handle.h
parente7bb0f8824a916c1537dd83735cd8aeccdcd0f3f (diff)
downloadpacman-c0e9be7973be6c81b22fde91516fb8991e7bb07b.tar.xz
Remove support for deltas from libalpm
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'lib/libalpm/handle.h')
-rw-r--r--lib/libalpm/handle.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/libalpm/handle.h b/lib/libalpm/handle.h
index 44c4904b..14d20bbe 100644
--- a/lib/libalpm/handle.h
+++ b/lib/libalpm/handle.h
@@ -95,7 +95,6 @@ struct __alpm_handle_t {
/* options */
char *arch; /* Architecture of packages we should allow */
- double deltaratio; /* Download deltas if possible; a ratio value */
int usesyslog; /* Use syslog instead of logfile? */ /* TODO move to frontend */
int checkspace; /* Check disk space before installing */
char *dbext; /* Sync DB extension */
@@ -110,10 +109,6 @@ struct __alpm_handle_t {
/* lock file descriptor */
int lockfd;
-
- /* for delta parsing efficiency */
- int delta_regex_compiled;
- regex_t delta_regex;
};
alpm_handle_t *_alpm_handle_new(void);