diff options
author | Dan McGee <dan@archlinux.org> | 2007-09-25 23:02:30 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-09-25 23:02:30 -0500 |
commit | fc0e83f05b29f57accb49544dabe856968349b3a (patch) | |
tree | 8a417de5ee3e2a522d6c13b1198a62b4c7a44155 /lib/libalpm/package.h | |
parent | 012f7939784358b02726c169543aa99436439335 (diff) | |
download | pacman-fc0e83f05b29f57accb49544dabe856968349b3a.tar.xz |
Preliminary support for optdepends
Add some alpm functions for getting optdepends, have makepkg include them
in the PKGINFO file, and have a pacman -Qi operation display the raw string
as stored by libalpm.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/package.h')
-rw-r--r-- | lib/libalpm/package.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libalpm/package.h b/lib/libalpm/package.h index 9a877ffd..460a38c8 100644 --- a/lib/libalpm/package.h +++ b/lib/libalpm/package.h @@ -71,6 +71,7 @@ struct __pmpkg_t { alpm_list_t *files; alpm_list_t *backup; alpm_list_t *depends; + alpm_list_t *optdepends; alpm_list_t *requiredby; alpm_list_t *conflicts; alpm_list_t *provides; |