GNOME Bugzilla – Bug 675893
[W32] Build fails due to isinf() being a macro, not a function
Last modified: 2012-05-16 21:38:17 UTC
Configure checks for isinf() being a function. In MinGW32 isinf() is actually a macro defined in math.h, and the code in gdk/fallback-c89.c guarded by #ifndef HAVE_ISINF fails miserably.
Created attachment 213876 [details] [review] on MinGW32 isinf() is a macro Adds #include <math.h> to be able to detect isinf being defined, and excludes the isinf-defining code chunk on MinGW32
*** This bug has been marked as a duplicate of bug 676087 ***