diff options
author | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-05-25 11:42:55 +0000 |
---|---|---|
committer | Piotr Kubaj <pkubaj@FreeBSD.org> | 2020-05-25 11:42:55 +0000 |
commit | f57991d1badc7322847432f6f6b0f3022a39d859 (patch) | |
tree | 5c34f47d4915e6cfe42e2b8bba751c5f80b60ecd | |
parent | [NEW PORT] www/py-django-compat (diff) |
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]
Notes
Notes:
svn path=/head/; revision=536461
-rw-r--r-- | devel/rapidcheck/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/devel/rapidcheck/Makefile b/devel/rapidcheck/Makefile index f57dee58c8f6..5df1adb95416 100644 --- a/devel/rapidcheck/Makefile +++ b/devel/rapidcheck/Makefile @@ -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} |