svn commit: r500642 - head/devel/fb303

Piotr Kubaj pkubaj at FreeBSD.org
Thu May 2 08:57:08 UTC 2019


Author: pkubaj
Date: Thu May  2 08:57:06 2019
New Revision: 500642
URL: https://svnweb.freebsd.org/changeset/ports/500642

Log:
  devel/fb303: fix build with GCC-based architectures
  
  /usr/local/include/thrift/concurrency/ThreadManager.h:61: error: ISO C++ forbids declaration of 'function' with no type
  /usr/local/include/thrift/concurrency/ThreadManager.h:61: error: typedef name may not be a nested-name-specifier
  /usr/local/include/thrift/concurrency/ThreadManager.h:61: error: expected ';' before '<' token
  /usr/local/include/thrift/concurrency/ThreadManager.h:191: error: 'ExpireCallback' has not been declared
  
  Approved by:	mentors (implicit approval)

Modified:
  head/devel/fb303/Makefile

Modified: head/devel/fb303/Makefile
==============================================================================
--- head/devel/fb303/Makefile	Thu May  2 08:15:45 2019	(r500641)
+++ head/devel/fb303/Makefile	Thu May  2 08:57:06 2019	(r500642)
@@ -20,7 +20,7 @@ BUILD_DEPENDS=	thrift:devel/thrift
 CONFIGURE_ARGS=	PY_PREFIX="${PREFIX}"
 
 GNU_CONFIGURE=	yes
-USES=		autoreconf compiler gmake perl5 python:2.7
+USES=		autoreconf compiler:c++11-lang gmake perl5 python:2.7
 USE_PERL5=	run
 WRKSRC=		${WRKDIR}/${DISTNAME}/contrib/fb303
 


More information about the svn-ports-head mailing list