From 8c41cb695cc5f90eee3d2226ad09016381700ca7 Mon Sep 17 00:00:00 2001 From: Tom Lane <tgl@sss.pgh.pa.us> Date: Sun, 17 Mar 2013 14:18:33 -0400 Subject: [PATCH] Fix inclusions in pgbench.c. Apparently this was depending on pqsignal.h for <signal.h>. Not sure why I didn't see the failure on my other machine. --- contrib/pgbench/pgbench.c | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/pgbench/pgbench.c b/contrib/pgbench/pgbench.c index 8deabe4a5a8..bc01f073516 100644 --- a/contrib/pgbench/pgbench.c +++ b/contrib/pgbench/pgbench.c @@ -39,6 +39,7 @@ #include <ctype.h> #include <math.h> +#include <signal.h> #ifndef WIN32 #include <sys/time.h> -- GitLab