From: Paul Ramsey Date: Thu, 5 Sep 2002 00:07:18 +0000 (+0000) Subject: Make 7.2 index test check for version 7.1 and default to 7.2 if not X-Git-Tag: pgis_0_7_3~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e3e4c9c3bc41f757590bd15f510cfaac9ab482e6;p=postgis 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 --- 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 #---------------------------------------------------------------