[haiku-commits] r34235 - haiku/trunk/headers/config

  • From: ingo_weinhold@xxxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Wed, 25 Nov 2009 10:44:39 +0100 (CET)

Author: bonefish
Date: 2009-11-25 10:44:38 +0100 (Wed, 25 Nov 2009)
New Revision: 34235
Changeset: http://dev.haiku-os.org/changeset/34235/haiku

Modified:
   haiku/trunk/headers/config/HaikuConfig.h
Log:
For the time being go with BeOS compatible types for all but 64 bit
architectures. Fixes the PPC build.


Modified: haiku/trunk/headers/config/HaikuConfig.h
===================================================================
--- haiku/trunk/headers/config/HaikuConfig.h    2009-11-25 09:43:33 UTC (rev 
34234)
+++ haiku/trunk/headers/config/HaikuConfig.h    2009-11-25 09:44:38 UTC (rev 
34235)
@@ -59,7 +59,8 @@
 #endif
 
 /* BeOS R5 compatible types */
-#ifdef __HAIKU_ARCH_X86
+#ifndef __HAIKU_ARCH_64_BIT
+/*#ifdef __HAIKU_ARCH_X86*/
        /* TODO: This should be "#ifdef __HAIKU_BEOS_COMPATIBLE", but this will
           break all gcc 4 C++ optional packages. I.e. switch that at a suitable
           time.


Other related posts:

  • » [haiku-commits] r34235 - haiku/trunk/headers/config - ingo_weinhold