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>2019-03-11 18:58:26 +0300
committerChristophe Romain <christophe.romain@process-one.net>2019-03-11 18:58:26 +0300
commit946baa972d0dd4879b313f817e731b4d5a0d9de1 (patch)
treea19b4dce9f45ab166345e3294f7471b031dccd04 /mix.exs
parente921b43754ec7b30ad2d23b316651b1b36b05178 (diff)
Fix cond_options with new options
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs6
1 files changed, 5 insertions, 1 deletions
diff --git a/mix.exs b/mix.exs
index 4b732334e..f08a0c723 100644
--- a/mix.exs
+++ b/mix.exs
@@ -62,7 +62,11 @@ defmodule Ejabberd.Mixfile do
end
defp cond_options do
- for {:true, option} <- [{config(:graphics), {:d, :GRAPHICS}}], do:
+ for {:true, option} <- [{config(:sip), {:d, :SIP}},
+ {config(:stun), {:d, :STUN}},
+ {config(:roster_gateway_workaround), {:d, :ROSTER_GATWAY_WORKAROUND}},
+ {config(:new_sql_schema), {:d, :NEW_SQL_SCHEMA}}
+ ], do:
option
end