Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 27 May 2020 19:11:37 +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: r536710 - head/databases/pglogical
Message-ID:  <202005271911.04RJBbix089088@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Wed May 27 19:11:37 2020
New Revision: 536710
URL: https://svnweb.freebsd.org/changeset/ports/536710

Log:
  databases/pglogical: fix build on GCC architectures
  
  Use C11 compiler:
  pglogical_dependency.c:235: error: static declaration of 'AcquireDeletionLock' follows non-static declaration
  /usr/local/include/postgresql/server/catalog/dependency.h:198: error: previous declaration of 'AcquireDeletionLock' was here

Modified:
  head/databases/pglogical/Makefile

Modified: head/databases/pglogical/Makefile
==============================================================================
--- head/databases/pglogical/Makefile	Wed May 27 19:09:47 2020	(r536709)
+++ head/databases/pglogical/Makefile	Wed May 27 19:11:37 2020	(r536710)
@@ -12,7 +12,7 @@ COMMENT=	Logical replication system as a PostgreSQL ex
 
 LICENSE=	PostgreSQL
 
-USES=		gettext-runtime gmake pgsql:9.4+
+USES=		compiler:c11 gettext-runtime gmake pgsql:9.4+
 
 USE_GITHUB=	yes
 GH_ACCOUNT=	2ndQuadrant



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