svn commit: r506913 - head/deskutils/recoll

Piotr Kubaj pkubaj at FreeBSD.org
Fri Jul 19 08:47:12 UTC 2019


Author: pkubaj
Date: Fri Jul 19 08:47:11 2019
New Revision: 506913
URL: https://svnweb.freebsd.org/changeset/ports/506913

Log:
  deskutils/recoll: fix build on GCC architectures
  
  Needs C++11 compiler:
  cc1plus: error: unrecognized command line option "-std=c++11"
  
  Approved by:	mentors (implicit approval)

Modified:
  head/deskutils/recoll/Makefile

Modified: head/deskutils/recoll/Makefile
==============================================================================
--- head/deskutils/recoll/Makefile	Fri Jul 19 08:30:03 2019	(r506912)
+++ head/deskutils/recoll/Makefile	Fri Jul 19 08:47:11 2019	(r506913)
@@ -20,7 +20,8 @@ RUN_DEPENDS=	unrar:archivers/unrar \
 		wpd2html:textproc/libwpd010 \
 		unrtf:textproc/unrtf
 
-USES=		bison gmake gnome iconv libtool localbase python:2.7 shebangfix
+USES=		bison compiler:c++11-lang gmake gnome iconv libtool localbase \
+		python:2.7 shebangfix
 USE_GNOME=	libxslt
 USE_LDCONFIG=	yes
 USE_PYTHON=	py3kplist


More information about the svn-ports-head mailing list