From ec7dd299020812f83b438f0c05dde8f079772087 Mon Sep 17 00:00:00 2001 From: k0kubun Date: Sun, 4 Feb 2018 13:49:38 +0000 Subject: [PATCH] mjit.c: another try for fixing solaris build Reverted r62192 and added another try. I prepared Solaris environment but I couldn't reproduce the RubyCI build failure. So I'm testing on trunk. I found the following article and it fixed the same problem with passing `-D__EXTENSIONS__`. So this commit defines `__EXTENSIONS__` for Solaris. https://bitbucket.org/ged/ruby-pg/issues/236/compile-error-usr-include-signalh-92-1 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@62204 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- mjit.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mjit.c b/mjit.c index 826c5b3a13..c3ed401139 100644 --- a/mjit.c +++ b/mjit.c @@ -78,7 +78,10 @@ #include #endif -#include "internal.h" +#ifdef __sun +#define __EXTENSIONS__ 1 +#endif + #include "vm_core.h" #include "mjit.h" #include "version.h"