]> granicus.if.org Git - ejabberd/commitdiff
Use stringprep app name
authorMickael Remond <mremond@process-one.net>
Wed, 3 Feb 2016 09:12:25 +0000 (10:12 +0100)
committerMickael Remond <mremond@process-one.net>
Wed, 3 Feb 2016 09:12:25 +0000 (10:12 +0100)
mix.exs
rebar.config
src/ejabberd_app.erl

diff --git a/mix.exs b/mix.exs
index 9a1f7072237b37982f8e14cece1e126fdbcc34ce..cfe78d204892d8b99a16750da2fb9df9eb1c1637 100644 (file)
--- a/mix.exs
+++ b/mix.exs
@@ -25,7 +25,7 @@ defmodule Ejabberd.Mixfile do
     [mod: {:ejabberd_app, []},
      applications: [:ssl],
      included_applications: [:lager, :mnesia, :p1_utils, :cache_tab,
-                             :p1_tls, :p1_stringprep, :p1_xml,
+                             :p1_tls, :stringprep, :p1_xml,
                              :p1_stun, :p1_yaml, :p1_zlib, :p1_iconv,
                              :esip, :jiffy, :oauth2, :xmlrpc, :eredis,
                              :p1_mysql, :p1_pgsql, :sqlite3]]
@@ -42,7 +42,7 @@ defmodule Ejabberd.Mixfile do
      {:p1_utils, git: "https://github.com/processone/p1_utils", tag: "1.0.3", override: true},
      {:cache_tab, git: "https://github.com/processone/cache_tab", tag: "1.0.2"},
      {:p1_tls, git: "https://github.com/processone/tls", tag: "1.0.0"},
-     {:p1_stringprep, git: "https://github.com/processone/stringprep", tag: "1.0.1"},
+     {:stringprep, git: "https://github.com/processone/stringprep", tag: "1.0.2"},
      {:p1_xml, git: "https://github.com/processone/xml", tag: "1.1.2"},
      {:p1_stun, git: "https://github.com/processone/stun", tag: "0.9.1"},
      {:esip, git: "https://github.com/processone/p1_sip", tag: "1.0.1"},
index 44b73fd95ed1f2d328c8b8528716ce496a463983..ffc4885eb35f927045417e0d219d10c30633c22d 100644 (file)
@@ -11,7 +11,7 @@
         {p1_utils, ".*", {git, "https://github.com/processone/p1_utils", {tag, "1.0.3"}}},
         {cache_tab, ".*", {git, "https://github.com/processone/cache_tab", {tag, "1.0.2"}}},
         {p1_tls, ".*", {git, "https://github.com/processone/tls", {tag, "1.0.0"}}},
-        {p1_stringprep, ".*", {git, "https://github.com/processone/stringprep", {tag, "1.0.1"}}},
+        {stringprep, ".*", {git, "https://github.com/processone/stringprep", {tag, "1.0.2"}}},
         {p1_xml, ".*", {git, "https://github.com/processone/xml", {tag, "1.1.2"}}},
         {p1_stun, ".*", {git, "https://github.com/processone/stun", {tag, "0.9.1"}}},
         {esip, ".*", {git, "https://github.com/processone/p1_sip", "1.0.1"}},
@@ -37,7 +37,7 @@
  {floating_deps, [p1_logger,
                   cache_tab,
                   p1_tls,
-                  p1_stringprep,
+                  stringprep,
                   p1_xml,
                   esip,
                  luerl,
@@ -94,7 +94,7 @@
 {eunit_compile_opts, [{i, "tools"}]}.
 
 {post_hook_configure, [{"p1_tls", []},
-                       {"p1_stringprep", []},
+                       {"stringprep", []},
                        {"p1_yaml", []},
                        {"esip", []},
                        {"p1_xml", [{if_var_true, full_xml, "--enable-full-xml"}]},
index 628b4a8ad01a54773a3bbcee0eed581ed63f8b62..ae74b5963d10785708770e518f67e151b15d11cf 100644 (file)
@@ -255,7 +255,7 @@ start_apps() ->
     ejabberd:start_app(p1_yaml),
     ejabberd:start_app(p1_tls),
     ejabberd:start_app(p1_xml),
-    ejabberd:start_app(p1_stringprep),
+    ejabberd:start_app(stringprep),
     ejabberd:start_app(p1_zlib),
     ejabberd:start_app(cache_tab).