diff options
author | Dave Reisner <d@falconindy.com> | 2011-02-06 22:16:54 -0500 |
---|---|---|
committer | Dave Reisner <d@falconindy.com> | 2011-02-06 22:16:54 -0500 |
commit | 6009462840af7baf3700568d34aed325ee854b2a (patch) | |
tree | 893b274dc23b4b55f5f1d67c137a7b71e5cf4009 | |
parent | 349fe9dff7726c7f3831406a16d63c040458b916 (diff) | |
download | expac-6009462840af7baf3700568d34aed325ee854b2a.tar.xz |
use alpm_db_get_pkgcache_list if available
-rw-r--r-- | expac.c | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -492,7 +492,11 @@ alpm_list_t *resolve_pkg(alpm_list_t *targets) { } else { /* dump full DBs */ for (r = dblist; r; r = alpm_list_next(r)) { /* joining causes corruption on alpm_release(), so we copy */ +#ifdef _HAVE_ALPM_DB_GET_PKGCACHE_LIST + ret = alpm_list_join(ret, alpm_list_copy(alpm_db_get_pkgcache_list(alpm_list_getdata(r)))); +#else ret = alpm_list_join(ret, alpm_list_copy(alpm_db_get_pkgcache(alpm_list_getdata(r)))); +#endif } } } else { @@ -514,10 +518,10 @@ alpm_list_t *resolve_pkg(alpm_list_t *targets) { } pkg = alpm_db_get_pkg(repo, pkgname); -#ifdef _HAVE_ALPM_FIND_SATISFIER +#if defined(_HAVE_ALPM_FIND_SATISFIER) && defined(_HAVE_ALPM_DB_GET_PKGCACHE_LIST) /* try to resolve as provide (e.g. awk => gawk) */ if (!pkg) { - pkg = alpm_find_satisfier(alpm_db_get_pkgcache(repo), pkgname); + pkg = alpm_find_satisfier(alpm_db_get_pkgcache_list(repo), pkgname); } #endif |