diff options
author | Ronald Klop <ronald@FreeBSD.org> | 2024-08-18 12:08:09 +0200 |
---|---|---|
committer | Ronald Klop <ronald@FreeBSD.org> | 2024-09-03 09:23:46 +0200 |
commit | adc03306916b49eb837e0e2ca24f783179640e19 (patch) | |
tree | e73a7a7cbe49e2efbc396d790a3d84efd9449e59 /databases/mongodb70/files/patch-SConstruct | |
parent | textproc/docproj: Update gohugo dependency (diff) |
databases/mongodb70: update to 7.0.14
Changes:
https://www.mongodb.com/docs/manual/release-notes/7.0/#7.0.14---aug-26--2024
NB: 7.0.13 was tagged, but never released.
Sync with improvements in mongodb80:
from commit b44fe228ca :
Removed SSL from OPTIONS. It was inherited from the first versions
of databases/mongodb, long before I became maintainer.
Currently disabling the SSL option does not disable ssl as ssl is
auto-detected and disabling ssl needs explicit --ssl=off which is
not implemented in the port. I never had a request for this in years
so I decided to just remove the option and have ssl enabled always.
from commit 5d8274d264 :
Also found some manual pages in the src tree.
from commit f2c9ba7c53 :
- add pre-configure check if downloaded mozjs version matches
get-sources.sh.
- change comment to how the upstream project names the open source
variant.
Diffstat (limited to 'databases/mongodb70/files/patch-SConstruct')
-rw-r--r-- | databases/mongodb70/files/patch-SConstruct | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/databases/mongodb70/files/patch-SConstruct b/databases/mongodb70/files/patch-SConstruct index 816aa6946300..4ccd299adcaf 100644 --- a/databases/mongodb70/files/patch-SConstruct +++ b/databases/mongodb70/files/patch-SConstruct @@ -29,12 +29,10 @@ print(env_vars.GenerateHelpText(env)) Exit(0) --unknown_vars = env_vars.UnknownVariables() --if unknown_vars: + unknown_vars = env_vars.UnknownVariables() + if unknown_vars: - env.FatalError("Unknown variables specified: {0}", ", ".join(list(unknown_vars.keys()))) -+#unknown_vars = env_vars.UnknownVariables() -+#if unknown_vars: -+# env.FatalError("Unknown variables specified: {0}", ", ".join(list(unknown_vars.keys()))) ++ print("Unknown variables specified: {0}", ", ".join(list(unknown_vars.keys()))) install_actions.setup(env, get_option('install-action')) |