Commit 86d88abf authored by Sam Lantinga's avatar Sam Lantinga

Fixed bug #453

That's silly, we included <asm/page.h> even though we know we have getpagesize()

--HG--
branch : SDL-1.2
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/branches/SDL-1.2%402459
parent 65c53ab1
...@@ -18,7 +18,7 @@ Copyright (c) 1995,1996 The XFree86 Project, Inc ...@@ -18,7 +18,7 @@ Copyright (c) 1995,1996 The XFree86 Project, Inc
#define HAS_MMAP_ANON #define HAS_MMAP_ANON
#include <sys/types.h> #include <sys/types.h>
#include <sys/mman.h> #include <sys/mman.h>
#include <asm/page.h> /* PAGE_SIZE */ /*#include <asm/page.h> /* PAGE_SIZE */
#define HAS_SC_PAGESIZE /* _SC_PAGESIZE may be an enum for Linux */ #define HAS_SC_PAGESIZE /* _SC_PAGESIZE may be an enum for Linux */
#define HAS_GETPAGESIZE #define HAS_GETPAGESIZE
#endif /* linux */ #endif /* linux */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment