From 6b5db63c159ea1d2112fe8dc535b877da03a6848 Mon Sep 17 00:00:00 2001 From: Chris Young Date: Thu, 7 Jun 2012 21:40:07 +0100 Subject: [PATCH] random page size for os4 --- src/pool.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pool.c b/src/pool.c index 641292d06..c5414b3b6 100644 --- a/src/pool.c +++ b/src/pool.c @@ -275,6 +275,8 @@ uint32_t git_pool__system_page_size(void) SYSTEM_INFO info; GetSystemInfo(&info); size = (uint32_t)info.dwPageSize; +#elif defined(__amigaos4__) + size = (uint32_t)1000000; // random value #else size = (uint32_t)sysconf(_SC_PAGE_SIZE); #endif