svn commit: r515328 - head/databases/pg_citus

Piotr Kubaj pkubaj at FreeBSD.org
Thu Oct 24 09:54:49 UTC 2019


Author: pkubaj
Date: Thu Oct 24 09:54:49 2019
New Revision: 515328
URL: https://svnweb.freebsd.org/changeset/ports/515328

Log:
  databases/pg_citus: fix build on GCC architectures
  
  C11 compiler is required:
  /usr/local/include/postgresql/server/fmgr.h:38: error: previous declaration of 'FunctionCallInfo' was here
  
  Approved by:	mentors (implicit approval)

Modified:
  head/databases/pg_citus/Makefile

Modified: head/databases/pg_citus/Makefile
==============================================================================
--- head/databases/pg_citus/Makefile	Thu Oct 24 09:39:11 2019	(r515327)
+++ head/databases/pg_citus/Makefile	Thu Oct 24 09:54:49 2019	(r515328)
@@ -12,7 +12,7 @@ COMMENT=	Horizontally scale Postgresql using sharding 
 
 LICENSE=	AGPLv3
 
-USES=		gmake pgsql:10+ autoreconf readline
+USES=		compiler:c11 gmake pgsql:10+ autoreconf readline
 
 WANT_PGSQL=	lib server
 GNU_CONFIGURE=	yes


More information about the svn-ports-head mailing list