svn commit: r507377 - head/net/s3ql

Piotr Kubaj pkubaj at FreeBSD.org
Fri Jul 26 21:50:00 UTC 2019


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:


More information about the svn-ports-all mailing list