2016-12-27 10:44:07 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%%%
|
2023-01-09 17:09:06 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2023 ProcessOne
|
2016-12-27 10:44:07 +01:00
|
|
|
%%%
|
|
|
|
%%% This program is free software; you can redistribute it and/or
|
|
|
|
%%% modify it under the terms of the GNU General Public License as
|
|
|
|
%%% published by the Free Software Foundation; either version 2 of the
|
|
|
|
%%% License, or (at your option) any later version.
|
|
|
|
%%%
|
|
|
|
%%% This program is distributed in the hope that it will be useful,
|
|
|
|
%%% but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
%%% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
%%% General Public License for more details.
|
|
|
|
%%%
|
|
|
|
%%% You should have received a copy of the GNU General Public License along
|
|
|
|
%%% with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
%%% 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
%%%
|
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
|
2013-04-08 11:12:54 +02:00
|
|
|
%% Macros
|
|
|
|
{roster_gateway_workaround, @roster_gateway_workaround@}.
|
|
|
|
{full_xml, @full_xml@}.
|
|
|
|
{debug, @debug@}.
|
2017-11-02 15:03:30 +01:00
|
|
|
{new_sql_schema, @new_sql_schema@}.
|
2013-04-08 11:12:54 +02:00
|
|
|
|
|
|
|
%% Ad-hoc directories with source files
|
|
|
|
{tools, @tools@}.
|
|
|
|
|
|
|
|
%% Dependencies
|
|
|
|
{odbc, @odbc@}.
|
2022-01-26 16:58:01 +01:00
|
|
|
{mssql, @mssql@}.
|
2013-04-08 11:12:54 +02:00
|
|
|
{mysql, @mysql@}.
|
|
|
|
{pgsql, @pgsql@}.
|
2015-03-16 19:53:19 +01:00
|
|
|
{sqlite, @sqlite@}.
|
2013-04-08 11:12:54 +02:00
|
|
|
{pam, @pam@}.
|
|
|
|
{zlib, @zlib@}.
|
2015-03-11 12:46:57 +01:00
|
|
|
{redis, @redis@}.
|
2015-01-29 18:43:47 +01:00
|
|
|
{elixir, @elixir@}.
|
2017-05-23 12:12:48 +02:00
|
|
|
{stun, @stun@}.
|
|
|
|
{sip, @sip@}.
|
2021-03-08 13:53:37 +01:00
|
|
|
{lua, @lua@}.
|
2013-04-08 11:12:54 +02:00
|
|
|
|
|
|
|
%% Version
|
|
|
|
{vsn, "@PACKAGE_VERSION@"}.
|
|
|
|
|
|
|
|
%% Variables for overlay template files
|
2021-03-02 18:50:48 +01:00
|
|
|
{description, "@PACKAGE_NAME@"}.
|
2013-04-08 11:12:54 +02:00
|
|
|
|
|
|
|
%% Platform-specific installation paths
|
|
|
|
{release, true}.
|
|
|
|
{release_dir, "${SCRIPT_DIR%/*}"}.
|
|
|
|
{sysconfdir, "{{release_dir}}/etc"}.
|
2021-12-23 14:24:27 +01:00
|
|
|
{erts_dir, "{{release_dir}}/erts-${ERTS_VSN#erts-}"}.
|
2013-04-08 11:12:54 +02:00
|
|
|
{installuser, "@INSTALLUSER@"}.
|
2021-12-23 14:24:27 +01:00
|
|
|
{erl, "{{erts_dir}}/bin/erl"}.
|
|
|
|
{epmd, "{{erts_dir}}/bin/epmd"}.
|
2013-04-08 11:12:54 +02:00
|
|
|
{localstatedir, "{{release_dir}}/var"}.
|
|
|
|
{libdir, "{{release_dir}}/lib"}.
|
|
|
|
{docdir, "{{release_dir}}/doc"}.
|
|
|
|
|
2022-04-25 12:46:48 +02:00
|
|
|
%% OTP release
|
|
|
|
{config_dir, "{{release_dir}}/conf"}.
|
|
|
|
{logs_dir, "{{release_dir}}/logs"}.
|
|
|
|
{spool_dir, "{{release_dir}}/database"}.
|
|
|
|
|
2015-12-18 17:20:18 +01:00
|
|
|
{latest_deps, @latest_deps@}.
|
2017-05-31 11:30:34 +02:00
|
|
|
{system_deps, @system_deps@}.
|
2015-12-18 17:20:18 +01:00
|
|
|
|
2015-10-20 15:22:39 +02:00
|
|
|
{ldflags, "@LDFLAGS@"}.
|
|
|
|
{cflags, "@CFLAGS@"}.
|
|
|
|
{cppflags, "@CPPFLAGS@"}.
|
|
|
|
|
2013-04-08 11:12:54 +02:00
|
|
|
%% Local Variables:
|
|
|
|
%% mode: erlang
|
|
|
|
%% End:
|
|
|
|
%% vim: set filetype=erlang tabstop=8:
|