diff options
author | Julian Andres Klode <jak@debian.org> | 2009-08-02 19:37:05 +0200 |
---|---|---|
committer | Julian Andres Klode <jak@debian.org> | 2009-08-02 19:37:05 +0200 |
commit | 9da165db08e69a0a5a467b4d02d414006590308e (patch) | |
tree | 8f4e3418b779ab79299e5a3383b1d7a5a847899b /apt-pkg/contrib | |
parent | 973439b6251ce363f44da5afe89cf73214cbfc70 (diff) |
* apt-pkg/contrib/mmap.cc:
- Fix FTBFS on GNU/kFreeBSD by disabling DynamicMMap::Grow() on
non-Linux architectures (as it uses mremap).
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) |