ref: 4bcf957406f8876bf3f427305b251d1a5f02eab0
parent: c9f6c66f953a0f384b88f8f18b970fc1fdd39b51
author: Suzuki, Toshiya (鈴木俊哉) <[email protected]>
date: Thu Mar 22 00:53:45 EDT 2007
Suppress SGI compiler warning against setjmp
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2007-03-22 suzuki toshiya <[email protected]>
+
+ * 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 <[email protected]>
* builds/unix/configure.raw: Dequote `OS_INLINE' in comment of
--- a/builds/unix/ftconfig.in
+++ b/builds/unix/ftconfig.in
@@ -108,6 +108,14 @@
#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 */