summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoan Touzet <joant@atypical.net>2020-04-28 14:31:06 -0400
committerJoan Touzet <wohali@users.noreply.github.com>2020-04-28 14:58:10 -0400
commit44e0f0fcb06727f0e41e1995fc7b24421457439d (patch)
tree128af65cc4d16208127585243f1e502e68aa9aa2
parent607f4c1f1095101980fe764550e7e3ca2b8f39b8 (diff)
downloadcouchdb-44e0f0fcb06727f0e41e1995fc7b24421457439d.tar.gz
Drop os_mon from dependencies
-rw-r--r--INSTALL.Unix.md2
-rw-r--r--rebar.config.script2
-rw-r--r--rel/reltool.config2
-rw-r--r--src/couch/src/couch.app.src1
-rw-r--r--src/couch/src/couch.erl1
5 files changed, 2 insertions, 6 deletions
diff --git a/INSTALL.Unix.md b/INSTALL.Unix.md
index 1934e9be9..cb45e9ad4 100644
--- a/INSTALL.Unix.md
+++ b/INSTALL.Unix.md
@@ -90,7 +90,7 @@ You can install the dependencies by running:
sudo yum install autoconf autoconf-archive automake \
curl-devel erlang-asn1 erlang-erts erlang-eunit \
- erlang-os_mon erlang-xmerl help2man \
+ erlang-xmerl help2man \
js-devel-1.8.5 libicu-devel libtool perl-Test-Harness
You can install the Node.JS dependencies via [NodeSource](https://github.com/nodesource/distributions#rpminstall).
diff --git a/rebar.config.script b/rebar.config.script
index 0e9c9781c..02d0df003 100644
--- a/rebar.config.script
+++ b/rebar.config.script
@@ -206,7 +206,7 @@ AddConfig = [
{plt_location, local},
{plt_location, COUCHDB_ROOT},
{plt_extra_apps, [
- asn1, compiler, crypto, inets, kernel, os_mon, runtime_tools,
+ asn1, compiler, crypto, inets, kernel, runtime_tools,
sasl, setup, ssl, stdlib, syntax_tools, xmerl]},
{warnings, [unmatched_returns, error_handling, race_conditions]}]},
{post_hooks, [{compile, "escript support/build_js.escript"}]}
diff --git a/rel/reltool.config b/rel/reltool.config
index 796019298..6acba378b 100644
--- a/rel/reltool.config
+++ b/rel/reltool.config
@@ -19,7 +19,6 @@
crypto,
inets,
kernel,
- os_mon,
runtime_tools,
sasl,
ssl,
@@ -77,7 +76,6 @@
{app, crypto, [{incl_cond, include}]},
{app, inets, [{incl_cond, include}]},
{app, kernel, [{incl_cond, include}]},
- {app, os_mon, [{incl_cond, include}]},
{app, public_key, [{incl_cond, include}]},
{app, runtime_tools, [{incl_cond, include}]},
{app, sasl, [{incl_cond, include}]},
diff --git a/src/couch/src/couch.app.src b/src/couch/src/couch.app.src
index 12ec29e12..6116c79ba 100644
--- a/src/couch/src/couch.app.src
+++ b/src/couch/src/couch.app.src
@@ -33,7 +33,6 @@
sasl,
inets,
ssl,
- os_mon,
% Upstream deps
ibrowse,
diff --git a/src/couch/src/couch.erl b/src/couch/src/couch.erl
index 60a8b6626..1c912ac2a 100644
--- a/src/couch/src/couch.erl
+++ b/src/couch/src/couch.erl
@@ -23,7 +23,6 @@ deps() ->
[
sasl,
inets,
- os_mon,
crypto,
public_key,
ssl,