Date: Sat, 27 Apr 2019 17:49:57 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r500217 - head/math/mppp Message-ID: <201904271749.x3RHnvjV086394@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Sat Apr 27 17:49:56 2019 New Revision: 500217 URL: https://svnweb.freebsd.org/changeset/ports/500217 Log: math/mppp: fix build with GCC-based architectures, enable -DMPPP_WITH_QUADMATH=ON Add USES=compiler:c++14-lang everywhere, not just for tests, because this library has recently become non-NOARCH. PR: 237608 Submitted by: pkubaj Modified: head/math/mppp/Makefile Modified: head/math/mppp/Makefile ============================================================================== --- head/math/mppp/Makefile Sat Apr 27 17:31:39 2019 (r500216) +++ head/math/mppp/Makefile Sat Apr 27 17:49:56 2019 (r500217) @@ -3,6 +3,7 @@ PORTNAME= mppp DISTVERSIONPREFIX= v DISTVERSION= 0.14 +PORTREVISION= 1 CATEGORIES= math MAINTAINER= yuri@FreeBSD.org @@ -17,12 +18,11 @@ BUILD_DEPENDS= ${LOCALBASE}/include/gmp.h:math/gmp \ RUN_DEPENDS= ${LOCALBASE}/include/gmp.h:math/gmp \ ${LOCALBASE}/include/mpfr.h:math/mpfr -USES= cmake +USES= cmake compiler:c++14-lang USE_GITHUB= yes GH_ACCOUNT= bluescarni -TEST_USES= compiler:c++14-lang -TEST_ARGS= -DMPPP_BUILD_TESTS=ON -DMPPP_WITH_MPFR=ON #-DMPPP_WITH_QUADMATH=ON (quadmath requires __float128, only available in clang6) +TEST_ARGS= -DMPPP_BUILD_TESTS=ON -DMPPP_WITH_MPFR=ON -DMPPP_WITH_QUADMATH=ON BENCHMARK_ARGS= -DMPPP_BUILD_BENCHMARKS=ON -DMPPP_BENCHMARK_BOOST=ON do-test:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201904271749.x3RHnvjV086394>