From 51af531de0457ebae503d83b739357eb7be59ac7 Mon Sep 17 00:00:00 2001 From: "jst%mozilla.jstenback.com" Date: Wed, 1 Sep 2004 00:32:03 +0000 Subject: [PATCH] Landing fix for bug 251939. Fixing IRIX build bustage. Patch by grobi_2000@yahoo.de, r=bryner@brianryner.com, sr=jst@mozilla.org --- modules/plugin/base/public/nptypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/plugin/base/public/nptypes.h b/modules/plugin/base/public/nptypes.h index 7a3b604d129..7a8c066cd85 100644 --- a/modules/plugin/base/public/nptypes.h +++ b/modules/plugin/base/public/nptypes.h @@ -48,7 +48,7 @@ */ typedef int int32_t; typedef unsigned int uint32_t; -#elif defined(_AIX) || defined(__sun) || defined(__osf__) +#elif defined(_AIX) || defined(__sun) || defined(__osf__) || defined(IRIX) /* * AIX and SunOS ship a inttypes.h header that defines [u]int32_t, * but not bool for C.