index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Dan McGee <dan@archlinux.org> | 2008-01-11 01:00:15 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2008-01-11 22:58:05 -0600 |
commit | 3e133524a54ab55daff666d26c67ac288b605e92 (patch) | |
tree | cc1f0080c28d65ab5c029659a653658c52d748a7 /lib/libalpm/deps.h | |
parent | ccc1c731529de16f6fa4064fd992a8f63d7cfc26 (diff) |
-rw-r--r-- | lib/libalpm/deps.h | 8 |
diff --git a/lib/libalpm/deps.h b/lib/libalpm/deps.h index b20ea92f..debd5347 100644 --- a/lib/libalpm/deps.h +++ b/lib/libalpm/deps.h @@ -36,7 +36,7 @@ struct __pmdepend_t { /* Missing dependency */ struct __pmdepmissing_t { char *target; - pmdepend_t depend; + pmdepend_t *depend; }; /* Graphs */ @@ -48,8 +48,10 @@ struct __pmgraph_t { alpm_list_t *childptr; /* points to a child in children list */ }; -pmdepmissing_t *_alpm_depmiss_new(const char *target, pmdepmod_t depmod, - const char *depname, const char *depversion); + +void _alpm_dep_free(pmdepend_t *dep); +pmdepend_t *_alpm_dep_dup(const pmdepend_t *dep); +pmdepmissing_t *_alpm_depmiss_new(const char *target, pmdepend_t *dep); void _alpm_depmiss_free(pmdepmissing_t *miss); alpm_list_t *_alpm_sortbydeps(alpm_list_t *targets, pmtranstype_t mode); void _alpm_recursedeps(pmdb_t *db, alpm_list_t *targs, int include_explicit); |