diff options
author | Michael Vogt <michael.vogt@ubuntu.com> | 2009-08-24 13:30:05 +0200 |
---|---|---|
committer | Michael Vogt <michael.vogt@ubuntu.com> | 2009-08-24 13:30:05 +0200 |
commit | f408836a80f20359c87d8815608af651199e3d73 (patch) | |
tree | 68223e0ef145325ccb75b4c25df7579236260e19 /apt-pkg/contrib/mmap.cc | |
parent | 04876c50b8416ee0736b3233f968ecc805a5e05c (diff) | |
parent | c6aa14e46842b0059c1648125562793e5edd08ee (diff) |
merged from the mvo branch
Diffstat (limited to 'apt-pkg/contrib/mmap.cc')
-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) |