diff options
author | Ronald Klop <ronald@FreeBSD.org> | 2022-10-31 20:45:33 +0000 |
---|---|---|
committer | Ronald Klop <ronald@FreeBSD.org> | 2022-11-03 21:47:04 +0000 |
commit | 55836daf2c06dffad37caa5e5c6d38d1c01abd62 (patch) | |
tree | dfd3b73a448ac9119c181d30086fc20fafe14872 | |
parent | c5830d9517a91f07687b5fbda624e5a539f91c3d (diff) | |
download | ports-55836daf2c06dffad37caa5e5c6d38d1c01abd62.tar.gz ports-55836daf2c06dffad37caa5e5c6d38d1c01abd62.zip |
databases/mongodb60: mark ignore on FreeBSD 12.3.
Summary:
Llvm in FreeBSD 12.3 gives several compile errors.
One example:
src/mongo/s/sharding_initialization.cpp:171:49: error: no viable constructor or deduction guide for deduction of template arguments of 'weak_ptr'
connPoolOptions.controllerFactory = [srwp = std::weak_ptr(srsp)] {
http://beefy6.nyi.freebsd.org/data/123amd64-default/0116f5c59197/logs/errors/mongodb60-6.0.2.log
12.4 is expected to work again due to new libc++
PR: 266587
Approved by: rene (mentor)
MFH: 2022Q4
Differential Revision: https://reviews.freebsd.org/D37230
(cherry picked from commit 34381447a02db395fdec9a0c3946562023bc3d5c)
-rw-r--r-- | databases/mongodb60/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/databases/mongodb60/Makefile b/databases/mongodb60/Makefile index 4e5bcc742d09..51d65275ab43 100644 --- a/databases/mongodb60/Makefile +++ b/databases/mongodb60/Makefile @@ -87,6 +87,10 @@ SSL_MAKE_ARGS= --ssl .include <bsd.port.pre.mk> +.if ${OSREL} == "12.3" +IGNORE= does not compile on 12.3, libc++ too old +.endif + ALL_TARGET= install-core # This ports is only following the Major Release. |