From f73b941a5edf6f313c3aaf3f263dc33a25074f11 Mon Sep 17 00:00:00 2001 From: "jst%mozilla.jstenback.com" Date: Mon, 12 Jul 2004 21:28:40 +0000 Subject: [PATCH] Attempting to fix SunOS bustage, and make the AIX portion of this code rely on the predefined symbol _AIX, not our AIX symbol. git-svn-id: svn://10.0.0.236/trunk@159101 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/modules/plugin/base/public/nptypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/modules/plugin/base/public/nptypes.h b/mozilla/modules/plugin/base/public/nptypes.h index fc961c24d9a..95006e9c310 100644 --- a/mozilla/modules/plugin/base/public/nptypes.h +++ b/mozilla/modules/plugin/base/public/nptypes.h @@ -44,7 +44,7 @@ #if defined(WIN32) || defined(OS2) typedef int int32_t; typedef unsigned int uint32_t; -#elif defined(AIX) +#elif defined(_AIX) || defined(__sun) #include #ifndef __cplusplus typedef int bool;