From: Tom Lane Date: Wed, 3 Feb 2010 03:25:55 +0000 (+0000) Subject: Add #include --- guessing the lack of this is why Windows X-Git-Tag: REL9_0_ALPHA4~125 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=45c88a55c2845a8f67934fa17ac9256f3a7d799f;p=thirdparty%2Fpostgresql.git Add #include --- guessing the lack of this is why Windows machines are all rejecting isinf() calls in this file. --- diff --git a/src/interfaces/ecpg/ecpglib/execute.c b/src/interfaces/ecpg/ecpglib/execute.c index 48b38dab1e4..53442774241 100644 --- a/src/interfaces/ecpg/ecpglib/execute.c +++ b/src/interfaces/ecpg/ecpglib/execute.c @@ -1,4 +1,4 @@ -/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/execute.c,v 1.91 2010/02/02 16:09:11 meskes Exp $ */ +/* $PostgreSQL: pgsql/src/interfaces/ecpg/ecpglib/execute.c,v 1.92 2010/02/03 03:25:55 tgl Exp $ */ /* * The aim is to get a simpler inteface to the database routines. @@ -17,6 +17,7 @@ #include "postgres_fe.h" #include +#include #include #include "pg_type.h"