svn commit: r512400 - head/net/rsplib

Piotr Kubaj pkubaj at FreeBSD.org
Fri Sep 20 09:59:31 UTC 2019


Author: pkubaj
Date: Fri Sep 20 09:59:31 2019
New Revision: 512400
URL: https://svnweb.freebsd.org/changeset/ports/512400

Log:
  net/rsplib: fix build on GCC architectures
  
  Needs C++11 compiler:
    The compiler feature "cxx_decltype" is not known to CXX compiler
  
    "GNU"
  
    version 4.2.1.
  
  Approved by:	mentors (implicit approval)

Modified:
  head/net/rsplib/Makefile

Modified: head/net/rsplib/Makefile
==============================================================================
--- head/net/rsplib/Makefile	Fri Sep 20 09:58:08 2019	(r512399)
+++ head/net/rsplib/Makefile	Fri Sep 20 09:59:31 2019	(r512400)
@@ -12,7 +12,7 @@ COMMENT=	RSerPool Framework and Example Applications
 LICENSE=	GPLv3+
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-USES=		cmake qt:5 shebangfix tar:xz
+USES=		cmake compiler:c++11-lang qt:5 shebangfix tar:xz
 
 CMAKE_ARGS+=	-DCMAKE_INSTALL_MANDIR=${PREFIX}/man \
 		-DDOCSDIR="${DOCSDIR}" \


More information about the svn-ports-head mailing list