From 2e629c6e405f891692b7a8ecab201c918f99fdfd Mon Sep 17 00:00:00 2001 From: rdb Date: Fri, 10 Apr 2009 06:40:21 +0000 Subject: [PATCH] Dont fail on 64bits with threading --- dtool/Config.Linux.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dtool/Config.Linux.pp b/dtool/Config.Linux.pp index ff4e91206f..8fc2d8cbd2 100644 --- a/dtool/Config.Linux.pp +++ b/dtool/Config.Linux.pp @@ -23,7 +23,7 @@ // What additional flags should we pass to interrogate? #if $[eq $[shell uname -m], x86_64] // if Linux is 64bit - #define SYSTEM_IGATE_FLAGS -D_LP64 + #define SYSTEM_IGATE_FLAGS -D_LP64 -D__const=const -Dvolatile -Dmutable #else #define SYSTEM_IGATE_FLAGS -D__i386__ -D__const=const -Dvolatile -Dmutable #endif