]> granicus.if.org Git - postgis/commitdiff
Make 7.2 index test check for version 7.1 and default to 7.2 if not
authorPaul Ramsey <pramsey@cleverelephant.ca>
Thu, 5 Sep 2002 00:07:18 +0000 (00:07 +0000)
committerPaul Ramsey <pramsey@cleverelephant.ca>
Thu, 5 Sep 2002 00:07:18 +0000 (00:07 +0000)
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

index e6fc86a1ffbf6d039c0a8a877361d31e442626ce..b59de603b031ba991ae7fa0cf529e4499854a3d0 100644 (file)
--- 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
 
 #---------------------------------------------------------------