Suppress SGI compiler warning against setjmp

This commit is contained in:
Suzuki, Toshiya (鈴木俊哉) 2007-03-22 04:53:45 +00:00
parent c9f6c66f95
commit 4bcf957406
2 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2007-03-22 suzuki toshiya <mpsuzuki@hiroshima-u.ac.jp>
* 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 <mpsuzuki@hiroshima-u.ac.jp>
* builds/unix/configure.raw: Dequote `OS_INLINE' in comment of

View File

@ -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 */