summaryrefslogtreecommitdiff
path: root/configure.ps1
diff options
context:
space:
mode:
authorJoan Touzet <wohali@users.noreply.github.com>2020-10-07 23:11:59 +0000
committerGitHub <noreply@github.com>2020-10-07 19:11:59 -0400
commitd263a7521489b3c5e958e2b15930ecebad0ae6db (patch)
tree250691f61cbe40220db78860dce729035b4de26a /configure.ps1
parent8da8306b5f160c4249cf700d327f547bd9c9bcd5 (diff)
downloadcouchdb-d263a7521489b3c5e958e2b15930ecebad0ae6db.tar.gz
Remove JS tests + support for harness (#3197) (#3203)
Diffstat (limited to 'configure.ps1')
-rw-r--r--configure.ps14
1 files changed, 0 insertions, 4 deletions
diff --git a/configure.ps1 b/configure.ps1
index c74fbcf41..f66c0d8df 100644
--- a/configure.ps1
+++ b/configure.ps1
@@ -5,7 +5,6 @@
This command is responsible for generating the build
system for Apache CouchDB.
- -WithCurl request that couchjs is linked to cURL (default false)
-DisableFauxton request build process skip building Fauxton (default false)
-DisableDocs request build process skip building documentation (default false)
-SkipDeps do not update Erlang dependencies (default false)
@@ -42,7 +41,6 @@
Param(
[switch]$Test = $false,
- [switch]$WithCurl = $false, # request that couchjs is linked to cURL (default false)
[switch]$DisableFauxton = $false, # do not build Fauxton
[switch]$DisableDocs = $false, # do not build any documentation or manpages
[switch]$SkipDeps = $false, # do not update erlang dependencies
@@ -183,9 +181,7 @@ spidermonkey_version = $SpiderMonkeyVersion
"@
$InstallMk | Out-File "$rootdir\install.mk" -encoding ascii
-$lowercurl = "$WithCurl".ToLower()
$ConfigERL = @"
-{with_curl, $lowercurl}.
{spidermonkey_version, "$SpiderMonkeyVersion"}.
"@
$ConfigERL | Out-File "$rootdir\config.erl" -encoding ascii