diff options
author | Johan Oudinet <johan.oudinet@gmail.com> | 2015-01-12 10:32:20 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-02-03 10:23:39 +0100 |
commit | 8290f2ea112dac347e52a4e0ae8a71a6bb2dc86e (patch) | |
tree | 4b5953feaa672d3085a048ad0d3f34c94fba11b7 /package/ejabberd/0004-disable-version-check.patch | |
parent | 527aaf08cca0e9b74cb3c13ce87802a603010793 (diff) | |
download | buildroot-8290f2ea112dac347e52a4e0ae8a71a6bb2dc86e.tar.gz buildroot-8290f2ea112dac347e52a4e0ae8a71a6bb2dc86e.zip |
ejabberd: new package.
[Thomas:
- Adjust the comment about the dependency on erlang
- Fix license to be 'GPLv2+ with OpenSSL exception' and not just 'GPLv2+'
- Use double quotes instead of simple quotes in the .mk file.
- Don't use the EJABBERD_MAKE_ENV variable, since it's not defined
anywhere.
- Remove the 0007-fix-init.patch patch, since we're not using the
init script provided by ejabberd, and rename
0008-fix-install-permissions.patch to
0007-fix-install-permissions.patch.]
Signed-off-by: Johan Oudinet <johan.oudinet@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/ejabberd/0004-disable-version-check.patch')
-rw-r--r-- | package/ejabberd/0004-disable-version-check.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/package/ejabberd/0004-disable-version-check.patch b/package/ejabberd/0004-disable-version-check.patch new file mode 100644 index 0000000000..f2f1e81e56 --- /dev/null +++ b/package/ejabberd/0004-disable-version-check.patch @@ -0,0 +1,20 @@ +Description: remove checking erlang version + Without this patch, the configure will try to run erlang to simply check if + the version is supported by ejabberd. Instead, we do this test statically. +Author: Johan Oudinet <johan.oudinet@gmail.com> + +Index: ejabberd/configure.ac +=================================================================== +--- ejabberd.orig/configure.ac 2014-10-20 11:04:14.751256865 +0200 ++++ ejabberd/configure.ac 2014-10-20 11:03:47.983578623 +0200 +@@ -37,10 +37,8 @@ AC_ARG_ENABLE(erlang-version-check, + [Check Erlang/OTP version @<:@default=yes@:>@])]) + case "$enable_erlang_version_check" in + yes|'') +- ERLANG_VERSION_CHECK([$REQUIRE_ERLANG_MIN],[$REQUIRE_ERLANG_MAX]) + ;; + no) +- ERLANG_VERSION_CHECK([$REQUIRE_ERLANG_MIN],[$REQUIRE_ERLANG_MAX],[warn]) + ;; + esac + |