We include <float.h> in every place that needs isnan(), because MSVC
used to require it. However, since MSVC 2013 that's no longer necessary
(cf. commit
cec8394b5ccd), so we can retire the inclusion to a
version-specific stanza in win32_port.h, where it doesn't need to
pollute random .c files. The header is of course still needed in a few
places for other reasons.
I (Álvaro) removed float.h from a few more files than in Emre's original
patch. This doesn't break the build in my system, but we'll see what
the buildfarm has to say about it all.
Author: Emre Hasegeli
Discussion: https://postgr.es/m/CAE2gYzyc0+5uG+Cd9-BSL7NKC8LSHLNg1Aq2=8ubjnUwut4_iw@mail.gmail.com
#include "postgres.h"
-#include <float.h>
#include <math.h>
#include "access/gist.h"
#include "postgres.h"
-#include <float.h>
#include <math.h>
/* Defined by Perl */
#include "postgres.h"
-#ifdef _MSC_VER
-#include <float.h> /* for _isnan */
-#endif
#include <math.h>
#include "access/relscan.h"
*/
#include "postgres.h"
-#include <float.h>
#include <math.h>
#include "access/gist.h"
*/
#include "postgres.h"
-#include <float.h>
#include <math.h>
#include "access/gist_private.h"
#include "postgres.h"
-#ifdef _MSC_VER
-#include <float.h> /* for _isnan */
-#endif
#include <math.h>
#include "access/hash.h"
#include "postgres.h"
-#ifdef _MSC_VER
-#include <float.h> /* for _isnan */
-#endif
#include <math.h>
#include "access/hash.h"
#include "postgres.h"
-#ifdef _MSC_VER
-#include <float.h> /* for _isnan */
-#endif
#include <math.h>
#include "access/amapi.h"
#include "postgres.h"
#include <ctype.h>
-#ifdef _MSC_VER
-#include <float.h> /* for _isnan */
-#endif
#include <math.h>
#include "access/hash.h"
#include "postgres.h"
#include <ctype.h>
-#include <float.h>
#include <limits.h>
#include <math.h>
#include "postgres.h"
#include <ctype.h>
-#include <float.h> /* for _isnan */
#include <limits.h>
#include <math.h>
#include "postgres.h"
#include <ctype.h>
-#include <float.h>
#include <limits.h>
#include <math.h>
#include <time.h>
*/
#include "postgres.h"
-#include <float.h>
#include <math.h>
#include "catalog/pg_aggregate.h"
#include "postgres.h"
#include <ctype.h>
-#include <float.h>
#include <math.h>
#include "access/brin.h"
#include <ctype.h>
#include <math.h>
-#include <float.h>
#include <limits.h>
#include <sys/time.h>
*/
#include "postgres.h"
-#include <float.h>
#include <limits.h>
#include <unistd.h>
#define W_OK 2
#define R_OK 4
+/*
+ * isinf() and isnan() should per spec be in <math.h>, but MSVC older than
+ * 2013 does not have them there. It does have _fpclass() and _isnan(), but
+ * they're in <float.h>, so include that here even though it means float.h
+ * percolates to our whole tree. Recent versions don't require any of this.
+ */
#if (_MSC_VER < 1800)
+#include <float.h>
#define isinf(x) ((_fpclass(x) == _FPCLASS_PINF) || (_fpclass(x) == _FPCLASS_NINF))
#define isnan(x) _isnan(x)
#endif
#define POSTGRES_ECPG_INTERNAL
#include "postgres_fe.h"
-#include <float.h>
#include <math.h>
#include "ecpgtype.h"
#define POSTGRES_ECPG_INTERNAL
#include "postgres_fe.h"
-#include <float.h>
#include <math.h>
#include "catalog/pg_type_d.h"
#include <time.h>
#include <ctype.h>
-#include <float.h>
#include <limits.h>
#include "extern.h"
#include "postgres_fe.h"
#include <time.h>
-#include <float.h>
#include <limits.h>
#include <math.h>
*/
#include "c.h"
-#include <float.h>
#include <math.h>
/*
#include "c.h"
#include <ctype.h>
-#ifdef _MSC_VER
-#include <float.h> /* for _isnan */
-#endif
#include <limits.h>
#include <math.h>
#ifndef WIN32
#include "postgres.h"
-#include <float.h>
#include <math.h>
#include <signal.h>