Displaying 1 result from an estimated 1 matches for "module_file_get_nam".
Did you mean:
module_file_get_name
2014 Nov 13
1
Static build failure
Hi dovecot list,
Static build of dovecot fails because src/lib/module-dir.c refers to
MODULE_SUFFIX that is undefined when building statically. This least to the
following build failure:
module-dir.c: In function 'module_file_get_name':
module-dir.c:624:20: error: 'MODULE_SUFFIX' undeclared (first use in this function)
p = strstr(fname, MODULE_SUFFIX);
^
The following somewhat inelegant patch fixes the problem.
diff -Nuar dovecot-2.2.15-orig/src/lib/module-dir.c dovecot-2.2.15/src/lib/module-...