Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/processone/ejabberd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristophe Romain <christophe.romain@process-one.net>2017-12-27 14:33:52 +0300
committerChristophe Romain <christophe.romain@process-one.net>2017-12-27 14:33:52 +0300
commit6bdf29676c825a5d266c87eb322424f33cf1c4b6 (patch)
tree110cb64df2f0def30b9bd4043c005ec7d1d2b585 /mix.exs
parent56241feb58efe0354f36bad2c02ed6616e14487e (diff)
Add missing application building with mix
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs4
1 files changed, 2 insertions, 2 deletions
diff --git a/mix.exs b/mix.exs
index e6622e0f0..427137d57 100644
--- a/mix.exs
+++ b/mix.exs
@@ -25,10 +25,10 @@ defmodule Ejabberd.Mixfile do
def application do
[mod: {:ejabberd_app, []},
- applications: [:ssl],
+ applications: [:ssl, :os_mon],
included_applications: [:lager, :mnesia, :inets, :p1_utils, :cache_tab,
:fast_tls, :stringprep, :fast_xml, :xmpp,
- :stun, :fast_yaml, :esip, :jiffy, :p1_oauth2]
+ :stun, :fast_yaml, :esip, :jiffy, :p1_oauth2, :fs]
++ cond_apps()]
end