summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/deps.h
diff options
context:
space:
mode:
authorXavier Chantry <chantry.xavier@gmail.com>2010-10-12 21:47:40 +0200
committerDan McGee <dan@archlinux.org>2010-12-13 03:08:54 +0100
commitd0d8f605d5f3ff8fc306af90ea2a516174354bfc (patch)
tree44541a2d3d54f9d857606cbdb64dc118c4668d96 /lib/libalpm/deps.h
parentd5a7dc67d93f5e530a6b3611f567eff5afe76efb (diff)
downloadpacman-d0d8f605d5f3ff8fc306af90ea2a516174354bfc.tar.gz
pacman-d0d8f605d5f3ff8fc306af90ea2a516174354bfc.tar.xz
alpm: don't expose alpm_depcmp
Either we expose all low levels function dealing with pmdepend_t (splitdep and depfree come to mind), or we don't. Since none of the tools use depcmp, I chose to remove it. In the future, we might want to expose higher level functions such as alpm_find_satisfier, or just lower level functions like splitdep and depfree together with depcmp. Signed-off-by: Xavier Chantry <chantry.xavier@gmail.com> Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/deps.h')
-rw-r--r--lib/libalpm/deps.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libalpm/deps.h b/lib/libalpm/deps.h
index ffc3aeeb..6fa763e1 100644
--- a/lib/libalpm/deps.h
+++ b/lib/libalpm/deps.h
@@ -55,6 +55,7 @@ int _alpm_resolvedeps(alpm_list_t *localpkgs, alpm_list_t *dbs_sync, pmpkg_t *pk
int _alpm_dep_edge(pmpkg_t *pkg1, pmpkg_t *pkg2);
pmdepend_t *_alpm_splitdep(const char *depstring);
pmpkg_t *_alpm_find_dep_satisfier(alpm_list_t *pkgs, pmdepend_t *dep);
+int _alpm_depcmp(pmpkg_t *pkg, pmdepend_t *dep);
#endif /* _ALPM_DEPS_H */