svn commit: r533169 - head/databases/pg_citus

Matthew Seaman matthew at FreeBSD.org
Mon Apr 27 20:51:19 UTC 2020


Author: matthew
Date: Mon Apr 27 20:51:18 2020
New Revision: 533169
URL: https://svnweb.freebsd.org/changeset/ports/533169

Log:
  Mark the port as requiring postgresql-11 or higher.  Attempting to
  build the port with postgres-10 results in:
  
  ```
  configure: error: Citus is not compatible with the detected PostgreSQL version 10.
  ```
  
  No PORTREVISION bump, as this will have no effect on the default
  packages (which link against postgresql-11) or on anyone who has
  successfully built pg_citus.  All that happens is that we detect the
  incompatible postgresql version earlier in the build process and error
  out sooner.
  
  PR:		245958
  Reported by:	rainer at ultra-secure.de

Modified:
  head/databases/pg_citus/Makefile

Modified: head/databases/pg_citus/Makefile
==============================================================================
--- head/databases/pg_citus/Makefile	Mon Apr 27 20:31:12 2020	(r533168)
+++ head/databases/pg_citus/Makefile	Mon Apr 27 20:51:18 2020	(r533169)
@@ -12,7 +12,7 @@ COMMENT=	Horizontally scale Postgresql using sharding 
 
 LICENSE=	AGPLv3
 
-USES=		compiler:c11 gmake pgsql:10+ autoreconf readline
+USES=		compiler:c11 gmake pgsql:11+ autoreconf readline
 
 WANT_PGSQL=	lib server
 GNU_CONFIGURE=	yes


More information about the svn-ports-all mailing list