Date: Tue, 18 Jun 2024 11:18:53 GMT From: Ronald Klop <ronald@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: dea4bdb17bc3 - main - databases/mongodb60: turn off LTO by default Message-ID: <202406181118.45IBIrpH013962@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by ronald: URL: https://cgit.FreeBSD.org/ports/commit/?id=dea4bdb17bc39cbdd2511d0f379a951f502f2b4d commit dea4bdb17bc39cbdd2511d0f379a951f502f2b4d Author: Ronald Klop <ronald@FreeBSD.org> AuthorDate: 2024-06-18 11:14:55 +0000 Commit: Ronald Klop <ronald@FreeBSD.org> CommitDate: 2024-06-18 11:17:46 +0000 databases/mongodb60: turn off LTO by default Got an error report that was fixed by turning this off. ld-elf.so.1: /usr/local/bin/mongod: Undefined symbol "_ZN6snappy8CompressEPKcmPNSt3__112basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEE" PR: 279821 --- databases/mongodb60/Makefile | 6 +++--- databases/mongodb60/pkg-descr | 2 ++ 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/databases/mongodb60/Makefile b/databases/mongodb60/Makefile index bd40a9ace48f..04c76dc6d706 100644 --- a/databases/mongodb60/Makefile +++ b/databases/mongodb60/Makefile @@ -1,12 +1,12 @@ PORTNAME= mongodb DISTVERSIONPREFIX= r DISTVERSION= 6.0.15 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= databases net PKGNAMESUFFIX= ${DISTVERSION:R:S/.//} MAINTAINER= ronald@FreeBSD.org -COMMENT= Distributed document-oriented "NoSQL" database (6.0.x Branch) +COMMENT= MongoDB Community Edition (6.0.x Branch) WWW= https://docs.mongodb.com/v6.0/ LICENSE= APACHE20 SSPLv1 # mongodb is SSPLv1, C++ driver is APACHE20 @@ -86,7 +86,7 @@ USERS= mongodb GROUPS= mongodb OPTIONS_DEFINE= LTO SASL SSL NOAVX -OPTIONS_DEFAULT= LTO SASL SSL NOAVX +OPTIONS_DEFAULT= SASL SSL NOAVX NOAVX_DESC= "Disable AVX instructions on amd64 (Sandybridge+)" diff --git a/databases/mongodb60/pkg-descr b/databases/mongodb60/pkg-descr index 59930ca8f679..5bf5a965fd47 100644 --- a/databases/mongodb60/pkg-descr +++ b/databases/mongodb60/pkg-descr @@ -1,3 +1,5 @@ +Distributed document-oriented "NoSQL" database. + Mongo (from "humongous") is a high-performance, open source, schema-free, document-oriented database. A common name in the "NOSQL" community.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202406181118.45IBIrpH013962>