mirror of
https://github.com/processone/ejabberd.git
synced 2024-12-10 16:58:46 +01:00
3131c08155
* src/expat_erl.c: Added #ifdef for WIN32 (thanks to Sergei Golovan) * src/mod_irc/iconv_erl.c: Likewise * src/configure.erl: Defines ERLANG_DIR variable (thanks to Sergei Golovan) * **/Makefile: Use ERLANG_DIR (thanks to Sergei Golovan) * **/Makefile.win32: Makefiles for windows build (thanks to Sergei Golovan) * src/configure.bat: Configuration script for windows (thanks to Sergei Golovan) SVN Revision: 123
22 lines
643 B
Erlang
22 lines
643 B
Erlang
%%%----------------------------------------------------------------------
|
|
%%% File : configure.erl
|
|
%%% Author : Alexey Shchepin <alexey@sevcom.net>
|
|
%%% Purpose :
|
|
%%% Created : 27 Jan 2003 by Alexey Shchepin <alexey@sevcom.net>
|
|
%%% Id : $Id$
|
|
%%%----------------------------------------------------------------------
|
|
|
|
-module(configure).
|
|
-author('alexey@sevcom.net').
|
|
-vsn('$Revision$ ').
|
|
|
|
-export([start/0]).
|
|
|
|
start() ->
|
|
EIDirS = "EI_DIR = " ++ code:lib_dir("erl_interface") ++ "\n",
|
|
RootDirS = "ERLANG_DIR = " ++ code:root_dir() ++ "\n",
|
|
file:write_file("Makefile.inc", list_to_binary(EIDirS ++ RootDirS)),
|
|
halt().
|
|
|
|
|