mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
- PAGE_SIZE fix 2.0
svn path=/trunk/; revision=37359
This commit is contained in:
parent
2fcfb97eec
commit
6a4fcf71eb
1 changed files with 2 additions and 6 deletions
|
@ -107,14 +107,10 @@
|
|||
// PAGE_SIZE definition
|
||||
//
|
||||
#ifndef PAGE_SIZE
|
||||
#if defined(_M_IX86)
|
||||
#define PAGE_SIZE 0x1000
|
||||
#elif defined(_M_AMD64)
|
||||
#define PAGE_SIZE 0x1000
|
||||
#elif defined(_M_ARM)
|
||||
#if defined(TARGET_i386) || defined(TARGET_amd64) || defined(TARGET_arm)
|
||||
#define PAGE_SIZE 0x1000
|
||||
#else
|
||||
#error Local PAGE_SIZE definition required
|
||||
#error Local PAGE_SIZE definition required when built as host
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue