From 251bc360b955827b96038a7c40a8f90ee9ea2296 Mon Sep 17 00:00:00 2001 From: Steve Singer Date: Mon, 31 Aug 2015 18:44:11 -0400 Subject: [PATCH] Add win32 makefile/config support for PG 9.5 Patch by sandeep.thakkar@enterprisedb.com --- config_msvc.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/config_msvc.h b/config_msvc.h index 2aaacec6..a9446e26 100644 --- a/config_msvc.h +++ b/config_msvc.h @@ -8,7 +8,12 @@ #define SLONY_I_VERSION_STRING_DEC 2,2,0 #define SLONY_I_FUNC_VERSION_STRING 2_2_0 -#if PG_VERSION_NUM >= 90300 +#if PG_VERSION_NUM >= 90500 +#define HAVE_GETACTIVESNAPSHOT 1 +#define HAVE_TYPCACHE 1 +#define SETCONFIGOPTION_8 1 +#define HAS_LOOKUPEXPLICITNAMESPACE_2 1 +#elif PG_VERSION_NUM >= 90300 #define HAVE_GETACTIVESNAPSHOT 1 #define HAVE_TYPCACHE 1 #define SETCONFIGOPTION_7 1 -- 2.39.5