Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 25 May 2020 11:42:55 +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: r536461 - head/devel/rapidcheck
Message-ID:  <202005251142.04PBgtLN003637@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Mon May 25 11:42:55 2020
New Revision: 536461
URL: https://svnweb.freebsd.org/changeset/ports/536461

Log:
  devel/rapidcheck: fix build on powerpc64 elfv2
  
  -Werror shouldn't be used by default:
  /wrkdirs/usr/ports/devel/rapidcheck/work/rapidcheck-d9482c6/include/rapidcheck/gen/Numeric.hpp:46:43: error: implicit conversion from 'std::__1::numeric_limits<unsigned long>::type' (aka 'unsigned long') to 'double' changes value from 18446744073709551615 to 18446744073709551616 [-Werror,-Wimplicit-int-float-conversion]

Modified:
  head/devel/rapidcheck/Makefile

Modified: head/devel/rapidcheck/Makefile
==============================================================================
--- head/devel/rapidcheck/Makefile	Mon May 25 11:40:23 2020	(r536460)
+++ head/devel/rapidcheck/Makefile	Mon May 25 11:42:55 2020	(r536461)
@@ -18,6 +18,8 @@ USE_LDCONFIG=	yes
 
 CMAKE_ON=	BUILD_SHARED_LIBS
 
+CXXFLAGS+=	-Wno-error
+
 post-install:
 	@${MV} ${STAGEDIR}${DATADIR}/cmake ${STAGEDIR}${PREFIX}/lib/
 	@${RMDIR} ${STAGEDIR}${DATADIR}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202005251142.04PBgtLN003637>