mirror of
https://github.com/reactos/reactos.git
synced 2025-06-01 07:28:19 +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
|
// PAGE_SIZE definition
|
||||||
//
|
//
|
||||||
#ifndef PAGE_SIZE
|
#ifndef PAGE_SIZE
|
||||||
#if defined(_M_IX86)
|
#if defined(TARGET_i386) || defined(TARGET_amd64) || defined(TARGET_arm)
|
||||||
#define PAGE_SIZE 0x1000
|
|
||||||
#elif defined(_M_AMD64)
|
|
||||||
#define PAGE_SIZE 0x1000
|
|
||||||
#elif defined(_M_ARM)
|
|
||||||
#define PAGE_SIZE 0x1000
|
#define PAGE_SIZE 0x1000
|
||||||
#else
|
#else
|
||||||
#error Local PAGE_SIZE definition required
|
#error Local PAGE_SIZE definition required when built as host
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue