This is an automated email from the ASF dual-hosted git repository.
jan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/couchdb.git
The following commit(s) were added to refs/heads/master by this push:
new d3a2871 feat: add ./configure --dev as alias for -c
--disable-{docs,fauxton}
d3a2871 is described below
commit d3a28715376c745a77224e65f4389cd3a31f6eec
Author: Jan Lehnardt <[email protected]>
AuthorDate: Tue Feb 13 15:37:52 2018 +0100
feat: add ./configure --dev as alias for -c --disable-{docs,fauxton}
---
configure | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/configure b/configure
index 4123412..fa0dfed 100755
--- a/configure
+++ b/configure
@@ -46,6 +46,7 @@ Options:
-c | --with-curl request that couchjs is linked to cURL (default
false)
--disable-fauxton do not build Fauxton
--disable-docs do not build any documentation or manpages
+ --dev alias for --with-curl --disable-docs
--disable-fauxton
--skip-deps do not update erlang dependencies
--rebar=PATH use rebar by specified path (version >=2.6.0 &&
<3.0 required)
EOF
@@ -77,6 +78,14 @@ parse_opts() {
continue
;;
+ --dev)
+ WITH_DOCS=0
+ WITH_FAUXTON=0
+ WITH_CURL="true"
+ shift
+ continue
+ ;;
+
--skip-deps)
SKIP_DEPS=1
shift
--
To stop receiving notification emails like this one, please contact
[email protected].