[postgis-tickets] r16541 - put back brin check. Brin doesn't work for < 9.5

Regina Obe lr at pcorp.us
Mon Apr 16 03:35:25 PDT 2018


Author: robe
Date: 2018-04-16 03:35:25 -0700 (Mon, 16 Apr 2018)
New Revision: 16541

Modified:
   trunk/configure.ac
Log:
put back brin check.  Brin doesn't work for < 9.5

Modified: trunk/configure.ac
===================================================================
--- trunk/configure.ac	2018-04-16 08:20:29 UTC (rev 16540)
+++ trunk/configure.ac	2018-04-16 10:35:25 UTC (rev 16541)
@@ -462,7 +462,10 @@
     AC_MSG_ERROR([PostGIS requires PostgreSQL >= 9.4])
   fi
 
-  HAVE_BRIN=yes
+  HAVE_BRIN=no
+  if test $POSTGIS_PGSQL_VERSION -gt 94; then
+    HAVE_BRIN=yes
+  fi
 
   dnl Note: We don't need the server-side LDFLAGS or CPPFLAGS because we get these from PGXS
 



More information about the postgis-tickets mailing list