From 454b04ca27384847755b6e066debbede2d4db728 Mon Sep 17 00:00:00 2001 From: Augustin Cavalier Date: Sat, 30 Mar 2019 16:57:05 -0400 Subject: [PATCH] HaikuConfig: Change _BEOS_COMPATIBLE_TYPES to only be defined on i386. Hopefully soon we will have our first 32-bit non-x86 architectures. No functional change for x86 32- and 64-bit intended. --- headers/config/HaikuConfig.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/headers/config/HaikuConfig.h b/headers/config/HaikuConfig.h index 761c9bcc24..881a7d9ca9 100644 --- a/headers/config/HaikuConfig.h +++ b/headers/config/HaikuConfig.h @@ -134,8 +134,7 @@ #endif /* BeOS R5 compatible types */ -#ifndef __HAIKU_ARCH_64_BIT -/*#ifdef __HAIKU_ARCH_X86*/ +#if defined(__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.