mirror of
https://git.busybox.net/buildroot.git
synced 2024-12-11 14:23:52 +08:00
dovecot: fix static build
Add a patch removing reference to MODULE_SUFFIX when it is undefined. Fixes: http://autobuild.buildroot.net/results/c68/c6844bbffff1cd4f738a5fced011d28f73c90b16/ Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
84047394ed
commit
8d4942cc41
24
package/dovecot/0002-fix-static-build.patch
Normal file
24
package/dovecot/0002-fix-static-build.patch
Normal file
@ -0,0 +1,24 @@
|
||||
Fix static build
|
||||
|
||||
MODULE_SUFFIX is undefined when building statically; don't used it.
|
||||
|
||||
Signed-off-by: Baruch Siach <baruch@tkos.co.il>
|
||||
---
|
||||
Patch status: sent upstream
|
||||
(http://dovecot.org/pipermail/dovecot/2014-November/098694.html)
|
||||
|
||||
diff -Nuar dovecot-2.2.15-orig/src/lib/module-dir.c dovecot-2.2.15/src/lib/module-dir.c
|
||||
--- dovecot-2.2.15-orig/src/lib/module-dir.c 2014-10-18 00:10:15.000000000 +0300
|
||||
+++ dovecot-2.2.15/src/lib/module-dir.c 2014-11-13 19:27:29.417786313 +0200
|
||||
@@ -621,7 +621,11 @@
|
||||
if (*p == '_')
|
||||
fname = p + 1;
|
||||
|
||||
+#ifdef MODULE_SUFFIX
|
||||
p = strstr(fname, MODULE_SUFFIX);
|
||||
+#else
|
||||
+ p = NULL;
|
||||
+#endif
|
||||
if (p == NULL)
|
||||
return fname;
|
||||
|
Loading…
Reference in New Issue
Block a user