diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2009-08-08 09:53:25 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2009-08-08 09:53:25 +0200 |
commit | dee2822ae83aea4c161036a892cea6622a8e8510 (patch) | |
tree | d7ec59b33ee0973ba36123ced62af041c6a15fac /apt-pkg/contrib | |
parent | 2b5c0d21114e200f524c2ff199bf1ce9e0d923fa (diff) | |
parent | 9a64707c285290c4e191e04d92c0fab9f6f118f5 (diff) |
merge with apt-sid
* backout my fix for the sources.list issue, there is already one in
Diffstat (limited to 'apt-pkg/contrib')
-rw-r--r-- | apt-pkg/contrib/mmap.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/contrib/mmap.cc b/apt-pkg/contrib/mmap.cc index aa52b4c30..4d5fcf71e 100644 --- a/apt-pkg/contrib/mmap.cc +++ b/apt-pkg/contrib/mmap.cc @@ -317,7 +317,7 @@ unsigned long DynamicMMap::WriteString(const char *String, but why we should not at least try to grow it before we give up? */ bool DynamicMMap::Grow() { -#ifdef _POSIX_MAPPED_FILES +#if defined(_POSIX_MAPPED_FILES) && defined(__linux__) unsigned long newSize = WorkSpace + 1024*1024; if(Fd != 0) |