From: Christophe Romain Date: Mon, 11 Mar 2019 15:58:26 +0000 (+0100) Subject: Fix cond_options with new options X-Git-Tag: 19.05~134 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=946baa972d0dd4879b313f817e731b4d5a0d9de1;p=ejabberd Fix cond_options with new options --- 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