aboutsummaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorChristophe Romain <christophe.romain@process-one.net>2019-03-11 16:58:26 +0100
committerChristophe Romain <christophe.romain@process-one.net>2019-03-11 16:58:26 +0100
commit946baa972d0dd4879b313f817e731b4d5a0d9de1 (patch)
treea19b4dce9f45ab166345e3294f7471b031dccd04 /mix.exs
parentFix transaction aborting and restarting in ejabberd_sql (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