git: f089e3674883 - 2024Q2 - databases/mongodb50: enable non-AVX CPUs by default
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 29 Apr 2024 13:33:09 UTC
The branch 2024Q2 has been updated by ronald: URL: https://cgit.FreeBSD.org/ports/commit/?id=f089e36748836048479ac8488bbbf7d8d98383f3 commit f089e36748836048479ac8488bbbf7d8d98383f3 Author: Ronald Klop <ronald@FreeBSD.org> AuthorDate: 2024-04-25 11:44:44 +0000 Commit: Ronald Klop <ronald@FreeBSD.org> CommitDate: 2024-04-29 13:33:00 +0000 databases/mongodb50: enable non-AVX CPUs by default By popular demand as this port is used by net-mgmt/unifi8. I couldn't find any information on the internet that the binary really does something which requires AVX. For example this discussion: https://github.com/turnkeylinux/tracker/issues/1724 (cherry picked from commit 1707c0aac83aaf892c07bfc05573d1efa8ec5724) PR: 277990 Requested by: glebius@ --- databases/mongodb50/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/databases/mongodb50/Makefile b/databases/mongodb50/Makefile index ccbc2e666182..b2e4388e884e 100644 --- a/databases/mongodb50/Makefile +++ b/databases/mongodb50/Makefile @@ -1,7 +1,7 @@ PORTNAME= mongodb DISTVERSIONPREFIX= r DISTVERSION= 5.0.26 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= databases net MASTER_SITES= https://fastdl.mongodb.org/src/ \ http://fastdl.mongodb.org/src/ @@ -63,7 +63,7 @@ USERS= mongodb GROUPS= mongodb OPTIONS_DEFINE= LTO SASL SSL NOAVX -OPTIONS_DEFAULT= SASL SSL +OPTIONS_DEFAULT= SASL SSL NOAVX NOAVX_DESC= "Disable AVX instructions on amd64 (Sandybridge+)"