Date: Sun, 25 Nov 2018 15:31:25 +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: r485866 - head/databases/pg_citus Message-ID: <201811251531.wAPFVPHP006964@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811251531.wAPFVPHP006964>