svn commit: r485866 - head/databases/pg_citus

Matthew Seaman matthew at FreeBSD.org
Sun Nov 25 15:31:26 UTC 2018


Author: matthew
Date: Sun Nov 25 15:31:25 2018
New Revision: 485866
URL: https://svnweb.freebsd.org/changeset/ports/485866

Log:
  Mark as broken on i386 -- compilation fails due to the lack of the
  'pg_atomic_uint64' type.  That's only deined in the upstream
  postgresql code on x86_64.

Modified:
  head/databases/pg_citus/Makefile

Modified: head/databases/pg_citus/Makefile
==============================================================================
--- head/databases/pg_citus/Makefile	Sun Nov 25 14:34:53 2018	(r485865)
+++ head/databases/pg_citus/Makefile	Sun Nov 25 15:31:25 2018	(r485866)
@@ -3,6 +3,7 @@
 
 PORTNAME=	citus
 PORTVERSION=	8.0.0
+PORTREVISION=	1
 DISTVERSIONPREFIX=	v
 CATEGORIES=	databases
 PKGNAMEPREFIX=	pg_
@@ -15,6 +16,7 @@ LICENSE=	AGPLv3
 BROKEN_aarch64=		fails to compile: transaction/backend_data.c:53:2: error: unknown type name 'pg_atomic_uint64'; did you mean 'pg_atomic_uint32'?
 BROKEN_armv6=		fails to compile: transaction/backend_data.c:53:2: error: unknown type name 'pg_atomic_uint64'; did you mean 'pg_atomic_uint32'?
 BROKEN_armv7=		fails to compile: transaction/backend_data.c:53:2: error: unknown type name 'pg_atomic_uint64'; did you mean 'pg_atomic_uint32'?
+BROKEN_i386=		fails to compile: transaction/backend_data.c:727:2: error: unknown type name 'pg_atomic_uint64'; did you mean 'pg_atomic_uint32'?
 
 USES=		gmake pgsql:9.6+ autoreconf readline
 WANT_PGSQL=	lib server


More information about the svn-ports-all mailing list