git: 1707c0aac83a - main - databases/mongodb50: enable non-AVX CPUs by default
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 25 Apr 2024 11:55:09 UTC
The branch main has been updated by ronald: URL: https://cgit.FreeBSD.org/ports/commit/?id=1707c0aac83aaf892c07bfc05573d1efa8ec5724 commit 1707c0aac83aaf892c07bfc05573d1efa8ec5724 Author: Ronald Klop <ronald@FreeBSD.org> AuthorDate: 2024-04-25 11:44:44 +0000 Commit: Ronald Klop <ronald@FreeBSD.org> CommitDate: 2024-04-25 11:54:45 +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 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+)"