diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | src/Makefile.in | 2 |
2 files changed, 4 insertions, 1 deletions
@@ -1,5 +1,8 @@ 2009-05-06 Badlop <badlop@process-one.net> + * src/Makefile.in: Prevent Erlang R13B compilation warning: + behaviour X undefined (EJAB-920) + * src/ejabberd_loglevel.erl: Use dynamic_compile instead of ram_file_io_server. Support definition of loglevels with integer or atom. (thanks to Geoff Cant)(EJAB-919) diff --git a/src/Makefile.in b/src/Makefile.in index 3aedc9c59..b2acf7042 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -28,7 +28,7 @@ else CHOWN_OUTPUT=&1 endif -EFLAGS += @ERLANG_SSL39@ +EFLAGS += @ERLANG_SSL39@ -pa . # make debug=true to compile Erlang module with debug informations. ifdef debug |