diff options
author | Aaron Griffin <aaron@archlinux.org> | 2007-03-07 07:45:30 +0000 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2007-03-07 07:45:30 +0000 |
commit | 166ffc4f9e3bf3b0014c8c307f93af650fd24feb (patch) | |
tree | 578fc9393b80e07bec20f8684ca51685b646bb29 /lib/libalpm/alpm.h | |
parent | 1a9e6015c7ab67c137be3e1d89b90e67b635b50b (diff) | |
download | pacman-166ffc4f9e3bf3b0014c8c307f93af650fd24feb.tar.xz |
* Bug fix for makepkg dependency testing. This requires that we
expose alpm_splitdep and alpm_depcmp as public symbols
* Removed a duplicate strtrim for question responses
Diffstat (limited to 'lib/libalpm/alpm.h')
-rw-r--r-- | lib/libalpm/alpm.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/libalpm/alpm.h b/lib/libalpm/alpm.h index 40097162..366aeda3 100644 --- a/lib/libalpm/alpm.h +++ b/lib/libalpm/alpm.h @@ -375,6 +375,9 @@ typedef enum _pmdeptype_t { PM_DEP_TYPE_CONFLICT } pmdeptype_t; +pmdepend_t *alpm_splitdep(const char *depstring); +int alpm_depcmp(pmpkg_t *pkg, pmdepend_t *dep); + const char *alpm_dep_get_target(pmdepmissing_t *miss); pmdeptype_t alpm_dep_get_type(pmdepmissing_t *miss); pmdepmod_t alpm_dep_get_mod(pmdepmissing_t *miss); |