Date: Fri, 20 Sep 2019 09:59:31 +0000 (UTC) From: Piotr Kubaj <pkubaj@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r512400 - head/net/rsplib Message-ID: <201909200959.x8K9xVEa098868@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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}" \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909200959.x8K9xVEa098868>