diff --git a/ChangeLog b/ChangeLog index 77798d9af..aa8b07e1a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2007-03-22 suzuki toshiya + + * builds/unix/ftconfig.in: Suppress SGI compiler's warning against + setjmp, proposed by Sean McBride: + http://lists.gnu.org/archive/html/freetype-devel/2007-03/msg00032.html + 2007-03-19 suzuki toshiya * builds/unix/configure.raw: Dequote `OS_INLINE' in comment of diff --git a/builds/unix/ftconfig.in b/builds/unix/ftconfig.in index 28b2d8c4e..b3c81b0ef 100644 --- a/builds/unix/ftconfig.in +++ b/builds/unix/ftconfig.in @@ -108,6 +108,14 @@ FT_BEGIN_HEADER #endif + /* Fix compiler warning with sgi compiler */ +#if defined( __sgi ) && !defined( __GNUC__ ) +#if defined( _COMPILER_VERSION ) && ( _COMPILER_VERSION >= 730 ) +#pragma set woff 3505 +#endif +#endif + + /*************************************************************************/ /* */ /* IntN types */