This is an automated email from the ASF dual-hosted git repository. ronny pushed a commit to branch dev-search in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit a41a639e507b2c788e1ea36251bb762f9addb8b8 Author: Ronny Berndt <[email protected]> AuthorDate: Mon May 8 22:18:59 2023 +0200 Add new configure option and restore --dev behavior --- configure | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/configure b/configure index 10d1d57ff..5b59440bc 100755 --- a/configure +++ b/configure @@ -127,6 +127,13 @@ parse_opts() { ;; --dev) + WITH_DOCS=0 + WITH_FAUXTON=0 + shift + continue + ;; + + --dev-search) WITH_DOCS=0 WITH_FAUXTON=0 WITH_NOUVEAU=1
