[test] Fallback to HUGE_VAL in place of INFINITY in invalid-matrix.c.

GCC 3.4.3 on OpenSolaris does not recognise INFINITY.  Use HUGE_VAL
instead for every compiler instead of just MSVC.
This commit is contained in:
M Joonas Pihlaja 2009-05-24 21:28:04 +03:00
parent d1994d1ac2
commit 75f1d11d93

View file

@ -29,7 +29,7 @@
#include "cairo-test.h"
#if !defined(INFINITY) && defined(_MSC_VER)
#if !defined(INFINITY)
#define INFINITY HUGE_VAL
#endif