diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2015-05-16 11:35:42 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2015-05-16 11:35:42 -0400 |
commit | 26058bf0dc5fca0a5107b2ee136a81a86cf36049 (patch) | |
tree | 32c65cc3bd1ff653e42f680727568ead2e6ebebb /src | |
parent | 4c5e060049a3714dd27b7f4732fe922090edea69 (diff) | |
download | postgresql-26058bf0dc5fca0a5107b2ee136a81a86cf36049.tar.gz postgresql-26058bf0dc5fca0a5107b2ee136a81a86cf36049.zip |
More portability fixing for bipartite_match.c.
<float.h> is required for isinf() on some platforms. Per buildfarm.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/lib/bipartite_match.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/lib/bipartite_match.c b/src/backend/lib/bipartite_match.c index 9c08b2895d1..1adba78ff34 100644 --- a/src/backend/lib/bipartite_match.c +++ b/src/backend/lib/bipartite_match.c @@ -16,6 +16,7 @@ */ #include "postgres.h" +#include <float.h> #include <math.h> #include <limits.h> |