svn commit: r536461 - head/devel/rapidcheck

Piotr Kubaj pkubaj at FreeBSD.org
Mon May 25 11:42:56 UTC 2020


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}


More information about the svn-ports-head mailing list