From ecb07f1e3fd02ff90cf4dc4e4db597263f413244 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Wed, 29 Mar 2017 04:32:03 +0100 Subject: [PATCH] Force Postgres 9.1 in makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a0a0d8a..445575a 100644 --- a/Makefile +++ b/Makefile @@ -24,8 +24,8 @@ INTVERSION := $(shell echo $$(($$(echo $(VERSION) | sed 's/\([[:digit:]]\{1,\}\) EXTVERSION = $(shell grep '"version":' META.json | head -1 \ | sed -e 's/[ ]*"version":[ ]*"\(.*\)",/\1/') -ifeq ($(shell echo $$(($(INTVERSION) < 803))),1) -$(error $(EXTENSION) requires PostgreSQL 8.3 or later. This is $(VERSION)) +ifeq ($(shell echo $$(($(INTVERSION) < 901))),1) +$(error $(EXTENSION) requires PostgreSQL 9.1 or later. This is $(VERSION)) endif SUBDIRS = bin lib regress