mirror of
https://github.com/ioquake/ioq3.git
synced 2024-11-10 07:11:46 +00:00
Fix q3vm execution on x86/x86_64 MacOSX
This commit is contained in:
parent
7a1f2bc92b
commit
ebec84c55d
1 changed files with 14 additions and 13 deletions
|
@ -24,21 +24,22 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|||
#include "vm_local.h"
|
||||
|
||||
#ifdef _WIN32
|
||||
#include <windows.h>
|
||||
#endif
|
||||
#include <windows.h>
|
||||
#else
|
||||
#ifdef __FreeBSD__
|
||||
#include <sys/types.h>
|
||||
#endif
|
||||
|
||||
#ifdef __FreeBSD__
|
||||
#include <sys/types.h>
|
||||
#endif
|
||||
#include <sys/mman.h> // for PROT_ stuff
|
||||
|
||||
#ifndef _WIN32
|
||||
#include <sys/mman.h> // for PROT_ stuff
|
||||
#endif
|
||||
|
||||
/* need this on NX enabled systems (i386 with PAE kernel or
|
||||
* noexec32=on x86_64) */
|
||||
#if defined(__linux__) || defined(__FreeBSD__)
|
||||
#define VM_X86_MMAP
|
||||
/* need this on NX enabled systems (i386 with PAE kernel or
|
||||
* noexec32=on x86_64) */
|
||||
#define VM_X86_MMAP
|
||||
|
||||
// workaround for systems that use the old MAP_ANON macro
|
||||
#ifndef MAP_ANONYMOUS
|
||||
#define MAP_ANONYMOUS MAP_ANON
|
||||
#endif
|
||||
#endif
|
||||
|
||||
static void VM_Destroy_Compiled(vm_t* self);
|
||||
|
|
Loading…
Reference in a new issue