Date: Sat, 25 Aug 2018 03:13:38 +0000 (UTC) From: Tobias Kortkamp <tobik@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r477992 - head/biology/lamarc Message-ID: <201808250313.w7P3Dc2i090096@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tobik Date: Sat Aug 25 03:13:37 2018 New Revision: 477992 URL: https://svnweb.freebsd.org/changeset/ports/477992 Log: biology/lamarc: Fix build with Clang 6 src/tools/mathx.cpp:781:12: error: no matching function for call to 'make_pair' return std::make_pair<DoubleVec1d, DoubleVec2d>(eigvals, eigvecs); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ /usr/include/c++/v1/utility:639:1: note: candidate function not viable: no known conversion from 'DoubleVec1d' (aka 'vector<double>') to 'std::__1::vector<double, std::__1::allocator<double> > &&' for 1st argument make_pair(_T1&& __t1, _T2&& __t2) ^ http://beefy11.nyi.freebsd.org/data/head-i386-default/p477696_s338122/logs/errors/lamarc-2.1.8_1,1.log Modified: head/biology/lamarc/Makefile Modified: head/biology/lamarc/Makefile ============================================================================== --- head/biology/lamarc/Makefile Sat Aug 25 03:06:45 2018 (r477991) +++ head/biology/lamarc/Makefile Sat Aug 25 03:13:37 2018 (r477992) @@ -14,6 +14,8 @@ COMMENT= Package of programs for computing population LICENSE= APACHE20 +USE_CXXSTD= c++98 + WRKSRC= ${WRKDIR}/${DISTNAME:S,${DISTVERSIONSUFFIX},,} GNU_CONFIGURE= yes
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201808250313.w7P3Dc2i090096>