This is an automated email from the ASF dual-hosted git repository.
jan pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/couchdb.git
The following commit(s) were added to refs/heads/main by this push:
new 1df9c472f feat(configure): add --disable-spidermonkey to
--dev[-with-nouveau]
1df9c472f is described below
commit 1df9c472fbba59d333de0e3857a6e75fbcbddf6f
Author: Jan Lehnardt <[email protected]>
AuthorDate: Mon Sep 29 17:50:46 2025 +0200
feat(configure): add --disable-spidermonkey to --dev[-with-nouveau]
---
configure | 2 ++
1 file changed, 2 insertions(+)
diff --git a/configure b/configure
index 91e783ee8..30ad40c24 100755
--- a/configure
+++ b/configure
@@ -127,6 +127,7 @@ parse_opts() {
--dev)
WITH_DOCS="false"
WITH_FAUXTON="false"
+ WITH_SPIDERMONKEY="false"
shift
continue
;;
@@ -135,6 +136,7 @@ parse_opts() {
WITH_DOCS="false"
WITH_FAUXTON="false"
WITH_NOUVEAU="true"
+ WITH_SPIDERMONKEY="false"
shift
continue
;;