Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 26 Jul 2019 21:50:00 +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: r507377 - head/net/s3ql
Message-ID:  <201907262150.x6QLo0nN072567@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Fri Jul 26 21:50:00 2019
New Revision: 507377
URL: https://svnweb.freebsd.org/changeset/ports/507377

Log:
  net/s3ql: fix build on GCC architectures
  
  Requires C11 compiler:
  src/s3ql/deltadump.c:9529: error: passing argument 2 of '__builtin_expect' with different width due to prototype
  
  Approved by:	mentors (implicit approval)

Modified:
  head/net/s3ql/Makefile

Modified: head/net/s3ql/Makefile
==============================================================================
--- head/net/s3ql/Makefile	Fri Jul 26 21:47:09 2019	(r507376)
+++ head/net/s3ql/Makefile	Fri Jul 26 21:50:00 2019	(r507377)
@@ -21,7 +21,7 @@ BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}apsw>=3.7:databa
 		ca_root_nss>=0:security/ca_root_nss
 RUN_DEPENDS:=	${BUILD_DEPENDS}
 
-USES=		localbase python:3.3+ sqlite tar:bz2
+USES=		compiler:c++11-lang localbase python:3.3+ sqlite tar:bz2
 USE_PYTHON=	autoplist distutils optsuffix
 
 post-install:



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