dovecot-2.2: Compile fix for systems without dlopen()

dovecot at dovecot.org dovecot at dovecot.org
Mon Oct 13 13:55:57 UTC 2014


details:   http://hg.dovecot.org/dovecot-2.2/rev/ca6f330781e6
changeset: 17944:ca6f330781e6
user:      Timo Sirainen <tss at iki.fi>
date:      Mon Oct 13 06:55:15 2014 -0700
description:
Compile fix for systems without dlopen()

diffstat:

 src/lib/module-dir.c |  6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diffs (16 lines):

diff -r 0086d1e38c7a -r ca6f330781e6 src/lib/module-dir.c
--- a/src/lib/module-dir.c	Sun Oct 12 08:58:40 2014 -0700
+++ b/src/lib/module-dir.c	Mon Oct 13 06:55:15 2014 -0700
@@ -580,6 +580,12 @@
 {
 }
 
+struct module *module_dir_find(struct module *modules ATTR_UNUSED,
+			       const char *name ATTR_UNUSED)
+{
+	return NULL;
+}
+
 void *module_get_symbol(struct module *module ATTR_UNUSED,
 			const char *symbol ATTR_UNUSED)
 {


More information about the dovecot-cvs mailing list