Browse Source

Dont fail on 64bits with threading

rdb 16 years ago
parent
commit
2e629c6e40
1 changed files with 1 additions and 1 deletions
  1. 1 1
      dtool/Config.Linux.pp

+ 1 - 1
dtool/Config.Linux.pp

@@ -23,7 +23,7 @@
 
 
 // What additional flags should we pass to interrogate?
 // What additional flags should we pass to interrogate?
 #if $[eq $[shell uname -m], x86_64] // if Linux is 64bit
 #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
 #else
   #define SYSTEM_IGATE_FLAGS -D__i386__ -D__const=const -Dvolatile -Dmutable
   #define SYSTEM_IGATE_FLAGS -D__i386__ -D__const=const -Dvolatile -Dmutable
 #endif
 #endif