Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 24 Oct 2019 09:54:49 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r515328 - head/databases/pg_citus
Message-ID:  <201910240954.x9O9snH5049267@repo.freebsd.org>

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



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