git: ef680967ddb6 - main - devel/mongo-c-driver: Enable SRV option by default
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 21 Sep 2025 23:25:36 UTC
The branch main has been updated by jwb:
URL: https://cgit.FreeBSD.org/ports/commit/?id=ef680967ddb686418f7936a08ff518184fdc1fc7
commit ef680967ddb686418f7936a08ff518184fdc1fc7
Author: Jason W. Bacon <jwb@FreeBSD.org>
AuthorDate: 2025-09-21 23:23:16 +0000
Commit: Jason W. Bacon <jwb@FreeBSD.org>
CommitDate: 2025-09-21 23:25:35 +0000
devel/mongo-c-driver: Enable SRV option by default
Adds support for mongodb+srv:// uris
PR: 289732
Approved by: ports@bsdserwis.com
---
devel/mongo-c-driver/Makefile | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/devel/mongo-c-driver/Makefile b/devel/mongo-c-driver/Makefile
index 7892c9e2cd53..c3ac44c59718 100644
--- a/devel/mongo-c-driver/Makefile
+++ b/devel/mongo-c-driver/Makefile
@@ -1,5 +1,7 @@
PORTNAME= mongo-c-driver
+# Note: devel/mongo-cxx-driver requires specific versions of this port
DISTVERSION= 1.30.4
+PORTREVISION= 1
CATEGORIES= devel
MAINTAINER= ports@bsdserwis.com
@@ -33,7 +35,7 @@ CMAKE_OFF= BUILD_TESTING \
OPTIONS_DEFINE= CRYPTOPROFILE DOCS ICU MONGODBAWS RDTSCP SASL SNAPPY \
SRV SSL ZSTD
-OPTIONS_DEFAULT= SSL
+OPTIONS_DEFAULT= SRV SSL
OPTIONS_SUB= yes
CRYPTOPROFILE_DESC= Use system crypto profile (requires OpenSSL)