]> granicus.if.org Git - ejabberd/commitdiff
Fix cond_options with new options
authorChristophe Romain <christophe.romain@process-one.net>
Mon, 11 Mar 2019 15:58:26 +0000 (16:58 +0100)
committerChristophe Romain <christophe.romain@process-one.net>
Mon, 11 Mar 2019 15:58:26 +0000 (16:58 +0100)
mix.exs

diff --git a/mix.exs b/mix.exs
index 4b732334e4c00a8f71b6273e0a01b337d06791f4..f08a0c72370b8520fe705c53b91c2a80e2d62478 100644 (file)
--- 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