You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by gs...@apache.org on 2006/12/12 18:38:39 UTC

svn commit: r486251 - /harmony/enhanced/drlvm/trunk/vm/include/open/hycomp.h

Author: gshimansky
Date: Tue Dec 12 09:38:38 2006
New Revision: 486251

URL: http://svn.apache.org/viewvc?view=rev&rev=486251
Log:
Fixed compilation on x86_64 after Weldon's commit 496200. It introduced files
use FALSE constant defined like this: ((BOOLEAN)0) in some header. For some
reason BOOLEAN type was not defined in hycomp.h when POINTER64 is defined,
so on 64-bits compilation failed. I made BOOLEAN definition to be enabled on
all types on linuxes.


Modified:
    harmony/enhanced/drlvm/trunk/vm/include/open/hycomp.h

Modified: harmony/enhanced/drlvm/trunk/vm/include/open/hycomp.h
URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/vm/include/open/hycomp.h?view=diff&rev=486251&r1=486250&r2=486251
==============================================================================
--- harmony/enhanced/drlvm/trunk/vm/include/open/hycomp.h (original)
+++ harmony/enhanced/drlvm/trunk/vm/include/open/hycomp.h Tue Dec 12 09:38:38 2006
@@ -150,9 +150,9 @@
 typedef short I_16;
 typedef char I_8;
 /* don't typedef BOOLEAN since it's already def'ed on Win32 */
+#endif
 #ifdef LINUX
 #define BOOLEAN UDATA
-#endif
 #endif
 
 #if !defined(HYCONST64)