svn commit: r440902 - head/textproc/sphinxsearch

Matthew Seaman matthew at FreeBSD.org
Sun May 14 20:33:32 UTC 2017


Author: matthew
Date: Sun May 14 20:33:31 2017
New Revision: 440902
URL: https://svnweb.freebsd.org/changeset/ports/440902

Log:
  Pending a better fix, mark broken when the RE2 option is enabled.
  Recent versions of devel/re2 install headers that result in error
  messages like so:
  
  /usr/local/include/re2/re2.h:915:5: error: no matching function for call to 'call_once'
      std::call_once(once_, &LazyRE2::Init, this);
      ^~~~~~~~~~~~~~
  
  No change to the default package, so no PORTREVISION bump.
  
  PR:		219239
  Submitted by:	mail+freebsd at gerritbeine.de, w.schwarzenfeld at utanet.at

Modified:
  head/textproc/sphinxsearch/Makefile

Modified: head/textproc/sphinxsearch/Makefile
==============================================================================
--- head/textproc/sphinxsearch/Makefile	Sun May 14 20:31:09 2017	(r440901)
+++ head/textproc/sphinxsearch/Makefile	Sun May 14 20:33:31 2017	(r440902)
@@ -80,6 +80,7 @@ PGSQL_USES=		pgsql
 RE2_DESC=		Enable re2 regular expression library
 RE2_CONFIGURE_WITH=	re2
 RE2_BUILD_DEPENDS=	${LOCALBASE}/lib/libre2.a:devel/re2
+RE2_BROKEN=		Bad C++ code in re2.h
 
 SYSLOG_DESC=		Enable logging via syslog
 SYSLOG_CONFIGURE_WITH=	syslog


More information about the svn-ports-all mailing list