From 83f680a33db9baef5b2e5d1a15a45b77620d6479 Mon Sep 17 00:00:00 2001 From: Tomas Vondra Date: Mon, 21 Aug 2017 14:38:29 +0200 Subject: Add missing sys/wait.h include to pgxc_monitor Without this include, the build on FreeBSD fails due to missing definition of WEXITSTATUS. --- contrib/pgxc_monitor/pgxc_monitor.c | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/pgxc_monitor/pgxc_monitor.c b/contrib/pgxc_monitor/pgxc_monitor.c index 155cb1718d..243ebcd0af 100644 --- a/contrib/pgxc_monitor/pgxc_monitor.c +++ b/contrib/pgxc_monitor/pgxc_monitor.c @@ -49,6 +49,7 @@ #include #include +#include /* Define all the node types */ typedef enum -- cgit v1.2.3