diff options
Diffstat (limited to 'cmdline/apt-get.cc')
-rw-r--r-- | cmdline/apt-get.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cmdline/apt-get.cc b/cmdline/apt-get.cc index f0405e75c..5f04135d2 100644 --- a/cmdline/apt-get.cc +++ b/cmdline/apt-get.cc @@ -136,10 +136,15 @@ bool TryToInstallBuildDep(pkgCache::PkgIterator Pkg,pkgCacheFile &Cache, /*}}}*/ // FIXME: move into more generic code (metaindex ?) +#if (APT_PKG_MAJOR >= 4 && APT_PKG_MINOR < 13) std::string MetaIndexFileName(metaIndex *metaindex) { // FIXME: this cast is the horror, the horror debReleaseIndex *r = (debReleaseIndex*)metaindex; +#else +std::string MetaIndexFileName(metaIndex *r) +{ +#endif // see if we have a InRelease file std::string PathInRelease = r->MetaIndexFile("InRelease"); |