diff options
author | Florian Pritz <bluewind@xinu.at> | 2014-07-04 23:12:01 +0200 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2014-09-30 14:33:26 +0200 |
commit | 04e8048725441465788a6c76a326ff252c2fd815 (patch) | |
tree | 22ce157e65f1eae5e1f11357adee781b10fb1246 /lib/libalpm/handle.h | |
parent | 4e263f24c6ed1cc710b7873b9ea37534117247ea (diff) | |
download | pacman-04e8048725441465788a6c76a326ff252c2fd815.tar.gz pacman-04e8048725441465788a6c76a326ff252c2fd815.tar.xz |
Add --assume-installed option
This allows to ignore specific dependencies.
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'lib/libalpm/handle.h')
-rw-r--r-- | lib/libalpm/handle.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libalpm/handle.h b/lib/libalpm/handle.h index 9cd3a210..b92d3cfb 100644 --- a/lib/libalpm/handle.h +++ b/lib/libalpm/handle.h @@ -84,6 +84,7 @@ struct __alpm_handle_t { alpm_list_t *noextract; /* List of files NOT to extract */ alpm_list_t *ignorepkg; /* List of packages to ignore */ alpm_list_t *ignoregroup; /* List of groups to ignore */ + alpm_list_t *assumeinstalled; /* List of virtual packages used to satisfy dependencies */ /* options */ char *arch; /* Architecture of packages we should allow */ |