svn commit: r506868 - head/textproc/sphinxsearch

Piotr Kubaj pkubaj at FreeBSD.org
Thu Jul 18 17:53:30 UTC 2019


Author: pkubaj
Date: Thu Jul 18 17:53:29 2019
New Revision: 506868
URL: https://svnweb.freebsd.org/changeset/ports/506868

Log:
  textproc/sphinxsearch: fix build on GCC architectures
  
  New GCC is required:
    The compiler feature "cxx_decltype" is not known to CXX compiler
  
  Approved by:	mentors (implicit approval)

Modified:
  head/textproc/sphinxsearch/Makefile

Modified: head/textproc/sphinxsearch/Makefile
==============================================================================
--- head/textproc/sphinxsearch/Makefile	Thu Jul 18 17:53:02 2019	(r506867)
+++ head/textproc/sphinxsearch/Makefile	Thu Jul 18 17:53:29 2019	(r506868)
@@ -19,6 +19,8 @@ COMMENT=	Sphinx Full-Text Search Engine
 
 LICENSE=	GPLv2
 
+USES=		compiler:c++11-lang
+
 # If expat is present on the system and configure finds it, it will
 # unconditionally link the output binary against it.  There's no way
 # of turning this off.  So for consistency, make sure it's always on.


More information about the svn-ports-all mailing list