mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
b542249f11
(thanks to Sergei Golovan) * src/translate.erl: Likewise * src/ejabberd_app.erl: Added "log_path" configuration parameter (thanks to Sergei Golovan) * src/**/Makefile.win32: Updated (thanks to Sergei Golovan) * src/**/*.c: Updated (thanks to Sergei Golovan) * src/configure.erl: Added writing of version to Makefile.inc (thanks to Sergei Golovan) * doc/guide.tex: Updated link to expat (thanks to Sergei Golovan) SVN Revision: 223
35 lines
747 B
Erlang
35 lines
747 B
Erlang
%%%----------------------------------------------------------------------
|
|
%%% File : ejabberd.erl
|
|
%%% Author : Alexey Shchepin <alexey@sevcom.net>
|
|
%%% Purpose :
|
|
%%% Created : 16 Nov 2002 by Alexey Shchepin <alexey@sevcom.net>
|
|
%%% Id : $Id$
|
|
%%%----------------------------------------------------------------------
|
|
|
|
-module(ejabberd).
|
|
-author('alexey@sevcom.net').
|
|
-vsn('$Revision$ ').
|
|
|
|
-export([start/0, stop/0,
|
|
get_so_path/0]).
|
|
|
|
start() ->
|
|
application:start(ejabberd).
|
|
|
|
stop() ->
|
|
application:stop(ejabberd).
|
|
|
|
|
|
get_so_path() ->
|
|
case os:getenv("EJABBERD_SO_PATH") of
|
|
false ->
|
|
case code:priv_dir(ejabberd) of
|
|
{error, _} ->
|
|
".";
|
|
Path ->
|
|
filename:join([Path, "lib"])
|
|
end;
|
|
Path ->
|
|
Path
|
|
end.
|