diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | src/eldap/Makefile.win32 | 3 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2007-01-25 Mickael Remond <mickael.remond@process-one.net> + + * src/eldap/Makefile.win32: fix build error on Windows. + 2007-01-25 Alexey Shchepin <alexey@sevcom.net> * src/web/*: Plugin architecture for HTTP modules (thanks to diff --git a/src/eldap/Makefile.win32 b/src/eldap/Makefile.win32 index 5d737d05a..04b0e24e8 100644 --- a/src/eldap/Makefile.win32 +++ b/src/eldap/Makefile.win32 @@ -26,3 +26,6 @@ $(OUTDIR)\eldap.beam : eldap.erl ELDAPv3.erl $(OUTDIR)\ELDAPv3.beam : ELDAPv3.erl erlc -W $(EFLAGS) -o $(OUTDIR) ELDAPv3.erl + +$(OUTDIR)\eldap_filter.beam : eldap_filter.erl + erlc -W $(EFLAGS) -o $(OUTDIR) eldap_filter.erl |