summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure9
1 files changed, 9 insertions, 0 deletions
diff --git a/configure b/configure
index 412341208..fa0dfed6a 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