From e3e4c9c3bc41f757590bd15f510cfaac9ab482e6 Mon Sep 17 00:00:00 2001 From: Paul Ramsey Date: Thu, 5 Sep 2002 00:07:18 +0000 Subject: [PATCH] Make 7.2 index test check for version 7.1 and default to 7.2 if not This is preparatory to the 7.3 pgsql release which uses the sames GiST bindings as the 7.2 release. git-svn-id: http://svn.osgeo.org/postgis/trunk@185 b70326c6-7e19-0410-871a-916f4a2858ee --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index e6fc86a1f..b59de603b 100644 --- a/Makefile +++ b/Makefile @@ -24,10 +24,10 @@ endif #--------------------------------------------------------------- # Test the version string and select the correct GiST index # bindings. -ifneq ($(findstring 7.2,$(VERSION)),) - USE_PG72=1 -else +ifneq ($(findstring 7.1,$(VERSION)),) USE_PG72=0 +else + USE_PG72=1 endif #--------------------------------------------------------------- -- 2.40.0