mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
* src/configure: Removed '==' bashism (thanks to Magnus Henoch)
* src/aclocal.m4: Likewise SVN Revision: 543
This commit is contained in:
parent
25ca5013bb
commit
1694a6a756
@ -1,5 +1,8 @@
|
|||||||
2006-04-23 Alexey Shchepin <alexey@sevcom.net>
|
2006-04-23 Alexey Shchepin <alexey@sevcom.net>
|
||||||
|
|
||||||
|
* src/configure: Removed '==' bashism (thanks to Magnus Henoch)
|
||||||
|
* src/aclocal.m4: Likewise
|
||||||
|
|
||||||
* src/ejabberd_c2s.erl: Resend messages when leaving negative
|
* src/ejabberd_c2s.erl: Resend messages when leaving negative
|
||||||
presence state (thanks to Magnus Henoch)
|
presence state (thanks to Magnus Henoch)
|
||||||
|
|
||||||
|
2
src/aclocal.m4
vendored
2
src/aclocal.m4
vendored
@ -68,7 +68,7 @@ AC_DEFUN(AM_WITH_ERLANG,
|
|||||||
AC_PATH_TOOL(ERLC, erlc, , $PATH:$with_erlang:$with_erlang/bin)
|
AC_PATH_TOOL(ERLC, erlc, , $PATH:$with_erlang:$with_erlang/bin)
|
||||||
AC_PATH_TOOL(ERL, erl, , $PATH:$with_erlang:$with_erlang/bin)
|
AC_PATH_TOOL(ERL, erl, , $PATH:$with_erlang:$with_erlang/bin)
|
||||||
|
|
||||||
if test "z$ERLC" == "z" || test "z$ERL" == "z"; then
|
if test "z$ERLC" = "z" || test "z$ERL" = "z"; then
|
||||||
AC_MSG_ERROR([erlang not found])
|
AC_MSG_ERROR([erlang not found])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
2
src/configure
vendored
2
src/configure
vendored
@ -2471,7 +2471,7 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
if test "z$ERLC" == "z" || test "z$ERL" == "z"; then
|
if test "z$ERLC" = "z" || test "z$ERL" = "z"; then
|
||||||
{ { echo "$as_me:$LINENO: error: erlang not found" >&5
|
{ { echo "$as_me:$LINENO: error: erlang not found" >&5
|
||||||
echo "$as_me: error: erlang not found" >&2;}
|
echo "$as_me: error: erlang not found" >&2;}
|
||||||
{ (exit 1); exit 1; }; }
|
{ (exit 1); exit 1; }; }
|
||||||
|
Loading…
Reference in New Issue
Block a user