From ed9c9732c98fe60822cf7004c1cd416fcd762c9c Mon Sep 17 00:00:00 2001 From: "serg@serg.mylan" <> Date: Tue, 15 Mar 2005 18:45:29 +0100 Subject: [PATCH] sun forte does not define __sun__, only __sun and sun (gcc defines all the three) --- include/my_global.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/my_global.h b/include/my_global.h index e78ec21523d..2601c53bb92 100644 --- a/include/my_global.h +++ b/include/my_global.h @@ -131,7 +131,7 @@ that dictates _XOPEN_SOURCE=600, but Solaris checks for 500. So, let's define 500 for solaris only. */ -#ifdef __sun__ +#ifdef __sun #define _XOPEN_SOURCE 500 #endif