mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-20 16:15:59 +01:00
Move to new iconv package
This commit is contained in:
parent
bad50b8dd1
commit
99b5c5712c
2
mix.exs
2
mix.exs
@ -54,7 +54,7 @@ defmodule Ejabberd.Mixfile do
|
|||||||
{:p1_pgsql, "~> 1.0"},
|
{:p1_pgsql, "~> 1.0"},
|
||||||
{:sqlite3, "~> 1.1"},
|
{:sqlite3, "~> 1.1"},
|
||||||
{:p1_zlib, git: "https://github.com/processone/zlib", tag: "1.0.0"},
|
{:p1_zlib, git: "https://github.com/processone/zlib", tag: "1.0.0"},
|
||||||
{:p1_iconv, git: "https://github.com/processone/eiconv", tag: "0.9.0"},
|
{:iconv, "~> 1.0"},
|
||||||
{:eredis, "~> 1.0"},
|
{:eredis, "~> 1.0"},
|
||||||
{:exrm, "~> 1.0.0-rc7", only: :dev}]
|
{:exrm, "~> 1.0.0-rc7", only: :dev}]
|
||||||
end
|
end
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
{if_var_true, elixir, {elixir, ".*", {git, "https://github.com/elixir-lang/elixir", {tag, "v1.1.0"}}}},
|
{if_var_true, elixir, {elixir, ".*", {git, "https://github.com/elixir-lang/elixir", {tag, "v1.1.0"}}}},
|
||||||
%% TODO: When modules are fully migrated to new structure and mix, we will not need anymore rebar_elixir_plugin
|
%% TODO: When modules are fully migrated to new structure and mix, we will not need anymore rebar_elixir_plugin
|
||||||
{if_var_true, elixir, {rebar_elixir_plugin, ".*", {git, "https://github.com/processone/rebar_elixir_plugin", "0.1.0"}}},
|
{if_var_true, elixir, {rebar_elixir_plugin, ".*", {git, "https://github.com/processone/rebar_elixir_plugin", "0.1.0"}}},
|
||||||
{if_var_true, iconv, {p1_iconv, ".*", {git, "https://github.com/processone/eiconv", {tag, "0.9.0"}}}},
|
{if_var_true, iconv, {iconv, ".*", {git, "https://github.com/processone/iconv", {tag, "1.0.0"}}}},
|
||||||
{if_var_true, tools, {meck, "0.8.2", {git, "https://github.com/eproxus/meck", {tag, "0.8.2"}}}},
|
{if_var_true, tools, {meck, "0.8.2", {git, "https://github.com/eproxus/meck", {tag, "0.8.2"}}}},
|
||||||
{if_var_true, redis, {eredis, ".*", {git, "https://github.com/wooga/eredis", {tag, "v1.0.8"}}}}]}.
|
{if_var_true, redis, {eredis, ".*", {git, "https://github.com/wooga/eredis", {tag, "v1.0.8"}}}}]}.
|
||||||
|
|
||||||
@ -49,7 +49,7 @@
|
|||||||
p1_pgsql,
|
p1_pgsql,
|
||||||
p1_pam,
|
p1_pam,
|
||||||
p1_zlib,
|
p1_zlib,
|
||||||
p1_iconv]}}.
|
iconv]}}.
|
||||||
|
|
||||||
{erl_opts, [nowarn_deprecated_function,
|
{erl_opts, [nowarn_deprecated_function,
|
||||||
{if_var_false, debug, no_debug_info},
|
{if_var_false, debug, no_debug_info},
|
||||||
@ -101,7 +101,7 @@
|
|||||||
{"p1_xml", [{if_var_true, full_xml, "--enable-full-xml"}]},
|
{"p1_xml", [{if_var_true, full_xml, "--enable-full-xml"}]},
|
||||||
{if_var_true, pam, {"p1_pam", []}},
|
{if_var_true, pam, {"p1_pam", []}},
|
||||||
{if_var_true, zlib, {"p1_zlib", []}},
|
{if_var_true, zlib, {"p1_zlib", []}},
|
||||||
{if_var_true, iconv, {"p1_iconv", []}}]}.
|
{if_var_true, iconv, {"iconv", []}}]}.
|
||||||
|
|
||||||
{port_env, [{"CFLAGS", "-g -O2 -Wall"}]}.
|
{port_env, [{"CFLAGS", "-g -O2 -Wall"}]}.
|
||||||
|
|
||||||
|
@ -116,7 +116,7 @@ stop(Host) ->
|
|||||||
%% Description: Initiates the server
|
%% Description: Initiates the server
|
||||||
%%--------------------------------------------------------------------
|
%%--------------------------------------------------------------------
|
||||||
init([Host, Opts]) ->
|
init([Host, Opts]) ->
|
||||||
ejabberd:start_app(p1_iconv),
|
ejabberd:start_app(iconv),
|
||||||
MyHost = gen_mod:get_opt_host(Host, Opts,
|
MyHost = gen_mod:get_opt_host(Host, Opts,
|
||||||
<<"irc.@HOST@">>),
|
<<"irc.@HOST@">>),
|
||||||
case gen_mod:db_type(Host, Opts) of
|
case gen_mod:db_type(Host, Opts) of
|
||||||
|
Loading…
Reference in New Issue
Block a user