]> granicus.if.org Git - ejabberd/commitdiff
* src/Makefile.in: Fix compilation warnings: Part 5: To fix a
authorBadlop <badlop@process-one.net>
Fri, 7 Dec 2007 08:44:22 +0000 (08:44 +0000)
committerBadlop <badlop@process-one.net>
Fri, 7 Dec 2007 08:44:22 +0000 (08:44 +0000)
warning about behaviour undefined, the erlang module that
implements the behaviour must be compiled before the module that
uses such behaviour (EJAB-290)

SVN Revision: 1049

ChangeLog
src/Makefile.in

index 76bbf9c153491cdd0b9ca7cce1050a8113d64263..704eac836a6840eb55b9111fcdd367fc9e2281d8 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2007-12-07  Badlop  <badlop@process-one.net>
 
+       * src/Makefile.in: Fix compilation warnings: Part 5: To fix a
+       warning about behaviour undefined, the erlang module that
+       implements the behaviour must be compiled before the module that
+       uses such behaviour (EJAB-290)
+
        * src/eldap/eldap.erl: Fix compilation warnings: Part 4 (EJAB-290)
        * src/web/ejabberd_web_admin.erl: Likewise
 
index 9ab219c0d2b09c9e05992d37e923469975e77c0b..36d28e9dfbdcbea37164696660a3f5f4adc265bd 100644 (file)
@@ -42,7 +42,8 @@ prefix = @prefix@
 
 SUBDIRS = @mod_irc@ @mod_pubsub@ @mod_muc@ @mod_proxy65@ @eldap@ @pam@ @web@ stringprep @tls@ @odbc@ @ejabberd_zlib@
 ERLSHLIBS = expat_erl.so
-SOURCES = $(wildcard *.erl)
+ERLBEHAVS = cyrsasl.erl gen_mod.erl p1_fsm.erl
+SOURCES = $(ERLBEHAVS) $(wildcard *.erl)
 BEAMS = $(SOURCES:.erl=.beam)
 
 DESTDIR =