Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 27 Apr 2020 20:51:18 +0000 (UTC)
From:      Matthew Seaman <matthew@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r533169 - head/databases/pg_citus
Message-ID:  <202004272051.03RKpI9c062470@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004272051.03RKpI9c062470>