From b59d5a2887256e3cb3acdcacf39d8286ee72d932 Mon Sep 17 00:00:00 2001 From: enn0x Date: Sun, 10 Jan 2010 17:34:32 +0000 Subject: [PATCH] Fixed an issue with the platform specific defines. --- panda/src/physx/physx_includes.h | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/panda/src/physx/physx_includes.h b/panda/src/physx/physx_includes.h index b4403c6173..b70f81bbdd 100644 --- a/panda/src/physx/physx_includes.h +++ b/panda/src/physx/physx_includes.h @@ -18,14 +18,17 @@ // Platform-specific defines #ifdef WIN32 -#define NX32 +#define NX32 1 #endif #ifdef IS_LINUX -#define LINUX -#define NX32 -#define CORELIB -#define NX_DISABLE_FLUIDS +#define LINUX 1 +#define NX32 1 +#define CORELIB 1 +#define NX_DISABLE_FLUIDS 1 +#endif + +#ifdef IS_FREEBSD #endif #ifdef IS_OSX