24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-02 21:17:12 +02:00

mix.exs: Don't forget to include epam/luerl

If --enable-lua and/or --enable-pam was specified, include the
corresponding applications with Mix releases.
This commit is contained in:
Holger Weiss 2022-02-21 00:34:02 +01:00
parent da516d64d4
commit aad04bba91

View File

@ -156,7 +156,9 @@ defmodule Ejabberd.MixProject do
end end
defp cond_apps do defp cond_apps do
for {:true, app} <- [{config(:redis), :eredis}, for {:true, app} <- [{config(:pam), :epam},
{config(:lua), :luerl},
{config(:redis), :eredis},
{config(:mysql), :p1_mysql}, {config(:mysql), :p1_mysql},
{config(:sip), :esip}, {config(:sip), :esip},
{config(:odbc), :odbc}, {config(:odbc), :odbc},