diff options
author | David Kalnischkies <david@kalnischkies.de> | 2014-11-07 14:21:35 +0100 |
---|---|---|
committer | David Kalnischkies <david@kalnischkies.de> | 2014-11-08 14:26:00 +0100 |
commit | 60b64ffc3468579183abc1bac0179943d782a52e (patch) | |
tree | c6b2bee1622bffcbbecf8a5361d19869151c6baf /apt-inst/contrib/arfile.h | |
parent | ccf6bdb3efc54165c76b42aae94c498a36acbe1b (diff) |
guard ABI changes for LFS in apt-inst
Git-Dch: Ignore
Diffstat (limited to 'apt-inst/contrib/arfile.h')
-rw-r--r-- | apt-inst/contrib/arfile.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/apt-inst/contrib/arfile.h b/apt-inst/contrib/arfile.h index 5aa38aedc..f53356847 100644 --- a/apt-inst/contrib/arfile.h +++ b/apt-inst/contrib/arfile.h @@ -17,6 +17,7 @@ #include <string> +#include <apt-pkg/macros.h> #ifndef APT_8_CLEANER_HEADERS #include <apt-pkg/fileutl.h> #endif @@ -61,7 +62,11 @@ struct ARArchive::Member unsigned long long Size; // Location of the data. +#if APT_PKG_ABI >= 413 unsigned long long Start; +#else + unsigned long Start; +#endif Member *Next; Member() : Start(0), Next(0) {}; |