aboutsummaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorBadlop <badlop@process-one.net>2022-02-24 21:33:40 +0100
committerBadlop <badlop@process-one.net>2022-02-24 21:39:14 +0100
commit7381b9db854e9aab5fa1fe48bcc75933acf5ee17 (patch)
tree541c6941bd05818c295f152a0ae17fefac11bd0b /mix.exs
parentTest also with recent Erlang/OTP 25.0-rc1 (diff)
Fix bug introduced in 8d8a3177 (#3782)
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mix.exs b/mix.exs
index 2e7e0c790..00659b346 100644
--- a/mix.exs
+++ b/mix.exs
@@ -89,7 +89,7 @@ defmodule Ejabberd.MixProject do
if_version_below('23', [{:d, :USE_OLD_PG2}]) ++
if_version_below('24', [{:d, :COMPILER_REPORTS_ONLY_LINES}]) ++
if_version_below('24', [{:d, :SYSTOOLS_APP_DEF_WITHOUT_OPTIONAL}]) ++
- if_function_exported(:uri_string, :normalize, 1, [{:d, :HAVE_URI_STRING}])
+ if_function_exported(:uri_string, :normalize, 1, [{:d, :HAVE_URI_STRING}]) ++
if_function_exported(:erl_error, :format_exception, 6, [{:d, :HAVE_ERL_ERROR}])
defines = for {:d, value} <- result, do: {:d, value}
result ++ [{:d, :ALL_DEFS, defines}]