From: Tom Lane Date: Mon, 19 Nov 2018 22:28:04 +0000 (-0500) Subject: Add needed #include. X-Git-Tag: REL_12_BETA1~1192 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cb09903fe63132a35e4b217bc394882b05c0c6f3;p=thirdparty%2Fpostgresql.git Add needed #include. Per POSIX, WIFSIGNALED and related macros are provided by . Apparently on Linux they're also pulled in by some other inclusions, but BSD-ish systems are pickier. Fixes portability issue in ffa4cbd62. Per buildfarm. --- diff --git a/src/backend/commands/copy.c b/src/backend/commands/copy.c index b956d2a5d3e..a283fcb33ad 100644 --- a/src/backend/commands/copy.c +++ b/src/backend/commands/copy.c @@ -17,6 +17,7 @@ #include #include #include +#include #include "access/heapam.h" #include "access/htup_details.h"