Update minimum version check in configure.in

This commit is contained in:
Ian Barwick
2017-08-31 13:33:45 +09:00
parent ed16c32fe7
commit 7fecc611a9
2 changed files with 2 additions and 2 deletions

View File

@@ -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