summaryrefslogtreecommitdiff
path: root/ftparchive/override.h
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2005-06-28 12:31:17 +0000
committerMichael Vogt <michael.vogt@ubuntu.com>2005-06-28 12:31:17 +0000
commit254ce4b0cc0336de5a9b46c693673ef68d5628b6 (patch)
tree180d7b122cc5ab1b8a9625ed873f83e7fdb104f4 /ftparchive/override.h
parentbe65f52793235fa0419af5bb6c867da28506c227 (diff)
parent29ba053e05b1a496500036dbd667002d1b8b5ec2 (diff)
* merged with apt--ubuntu--0
Patches applied: * apt@packages.debian.org/apt--ubuntu--0--base-0 tag of apt@packages.debian.org/apt--main--0--patch-88 * apt@packages.debian.org/apt--ubuntu--0--patch-1 Merge from Debian branch * apt@packages.debian.org/apt--ubuntu--0--patch-2 0.6.38ubuntu1 * apt@packages.debian.org/apt--ubuntu--0--patch-3 Merge with mainline * apt@packages.debian.org/apt--ubuntu--0--patch-4 Improved arch-build rule * apt@packages.debian.org/apt--ubuntu--0--patch-5 Merge with mainline * apt@packages.debian.org/apt--ubuntu--0--patch-6 Merge with mvo * michael.vogt@ubuntu.com--2005/apt--bts225947--0--base-0 tag of apt@packages.debian.org/apt--main--0--patch-79 * michael.vogt@ubuntu.com--2005/apt--bts225947--0--patch-1 * merged with mainline and apt--fixes--0 * michael.vogt@ubuntu.com--2005/apt--bts225947--0--patch-2 * patch from aj (slighly modified to use auto_ptr<>) applied * michael.vogt@ubuntu.com--2005/apt--bts225947--0--patch-3 * changelog updated * michael.vogt@ubuntu.com--2005/apt--bts225947--0--patch-4 * work for arch=all packages too now * michael.vogt@ubuntu.com--2005/apt--sane-handle-timeout--0--base-0 tag of apt@packages.debian.org/apt--main--0--patch-87 * michael.vogt@ubuntu.com--2005/apt--sane-handle-timeout--0--patch-1 * report timeouts (from Connect) and fail if they happen in pkgAcqMetaSig * michael.vogt@ubuntu.com--2005/apt--sane-handle-timeout--0--patch-2 * merged with the fixes branch to make it build again * michael.vogt@ubuntu.com--2005/apt--ubuntu--0--patch-1 tag of apt@packages.debian.org/apt--main--0--patch-88 * michael.vogt@ubuntu.com--2005/apt--ubuntu--0--patch-2 * merged apt--mvo (to make pining on components work again) * michael.vogt@ubuntu.com--2005/apt--ubuntu--0--patch-3 * merged with apt--fixes--0 (to make the building of the french manpages work and to fix a incorrect man-page example * michael.vogt@ubuntu.com--2005/apt--ubuntu--0--patch-4 * merged with the bts225947 code * michael.vogt@ubuntu.com--2005/apt--ubuntu--0--patch-5 * merged the imporoved timoeut handling patch * michael.vogt@ubuntu.com--2005/apt--ubuntu--0--patch-6 * merged with matt * michael.vogt@ubuntu.com--2005/apt--ubuntu--0--patch-7 * removed another conflict with apt--main
Diffstat (limited to 'ftparchive/override.h')
-rw-r--r--ftparchive/override.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/ftparchive/override.h b/ftparchive/override.h
index 2d6a4e27c..e64641776 100644
--- a/ftparchive/override.h
+++ b/ftparchive/override.h
@@ -34,17 +34,16 @@ class Override
map<string,string> FieldOverride;
string SwapMaint(string Orig,bool &Failed);
+ ~Item() {};
};
map<string,Item> Mapping;
inline Item *GetItem(string Package)
{
- map<string,Item>::iterator I = Mapping.find(Package);
- if (I == Mapping.end())
- return 0;
- return &I->second;
- };
+ return GetItem(Package, "");
+ }
+ Item *GetItem(string Package, string Architecture);
bool ReadOverride(string File,bool Source = false);
bool ReadExtraOverride(string File,bool Source = false);