gtkcssshadowvalue.c: Fix build on older Visual Studio
This code made use of isnan(), which is not provided by pre-2013 Visual Studio, so fix the build by including fallback-c89.c in place of math.h, and update fallback-c89.c to include the implementation of isnan() for Visual Studio, which is copied from the fallback-c89.c in gdk/.
This commit is contained in:
@ -114,3 +114,15 @@ trunc (double x)
|
|||||||
return (x > 0 ? floor (x) : ceil (x));
|
return (x > 0 ? floor (x) : ceil (x));
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef HAVE_DECL_ISNAN
|
||||||
|
/* it seems of the supported compilers only
|
||||||
|
* MSVC does not have isnan(), but it does
|
||||||
|
* have _isnan() which does the same as isnan()
|
||||||
|
*/
|
||||||
|
static inline gboolean
|
||||||
|
isnan (double x)
|
||||||
|
{
|
||||||
|
return _isnan (x);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|||||||
@ -29,7 +29,7 @@
|
|||||||
#include "gtkrenderprivate.h"
|
#include "gtkrenderprivate.h"
|
||||||
#include "gtkpango.h"
|
#include "gtkpango.h"
|
||||||
|
|
||||||
#include <math.h>
|
#include "fallback-c89.c"
|
||||||
#include <float.h>
|
#include <float.h>
|
||||||
|
|
||||||
#define CORNER_MASK_CACHE_MAX_SIZE 2000U
|
#define CORNER_MASK_CACHE_MAX_SIZE 2000U
|
||||||
|
|||||||
Reference in New Issue
Block a user