From bb27e441ccec584edff74bbf9c9466c0cfba5c5c Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Thu, 22 Nov 2012 22:23:31 -0500 Subject: [PATCH] Fix build with PostgreSQL 9.3devel Some needed declarations have been moved to the new header htup_details.h. stringinfo.h needs to be included explicitly now. It should always have been necessary, but might have come in through other headers. --- src/plproxy.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/plproxy.h b/src/plproxy.h index 5e73d05..d478e1c 100644 --- a/src/plproxy.h +++ b/src/plproxy.h @@ -37,12 +37,17 @@ #include #endif +#if PG_VERSION_NUM >= 90300 +#include +#endif + #include #include #include #include #include #include +#include #include #include #include