From 7fecc611a9ad1f55570116194f6aa2eb92d0d164 Mon Sep 17 00:00:00 2001 From: Ian Barwick Date: Thu, 31 Aug 2017 13:33:45 +0900 Subject: [PATCH] Update minimum version check in configure.in --- configure | 2 +- configure.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 08d3eca4..71c256d4 100755 --- a/configure +++ b/configure @@ -1841,7 +1841,7 @@ if test "$major_version_num" -lt '10'; then version_num_int=$(echo "$version_num"| $SED -e 's/^\([0-9]*\)\.\([0-9]*\)$/\1\2/') - if test "$version_num_int" -lt '93'; then + if test "$version_num_int" -lt '94'; then as_fn_error $? "repmgr is not compatible with detected PostgreSQL version: $version_num" "$LINENO" 5 fi else diff --git a/configure.in b/configure.in index 3fd4f30a..7f036c11 100644 --- a/configure.in +++ b/configure.in @@ -38,7 +38,7 @@ if test "$major_version_num" -lt '10'; then version_num_int=$(echo "$version_num"| $SED -e 's/^\([[0-9]]*\)\.\([[0-9]]*\)$/\1\2/') - if test "$version_num_int" -lt '93'; then + if test "$version_num_int" -lt '94'; then AC_MSG_ERROR([repmgr is not compatible with detected PostgreSQL version: $version_num]) fi else