diff options
Diffstat (limited to 'Src')
-rw-r--r-- | Src/utils.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Src/utils.c b/Src/utils.c index 30519f247..2e061e591 100644 --- a/Src/utils.c +++ b/Src/utils.c @@ -110,6 +110,19 @@ zwarnnam(const char *cmd, const char *fmt, const char *str, int num) zerrmsg(fmt, str, num); } +#ifdef __CYGWIN__ +/* + * This works around an occasional problem with dllwrap on Cygwin, seen + * on at least two installations. It fails to find the last symbol + * exported in alphabetical order (in our case zwarnnam). Until this is + * properly categorised and fixed we add a dummy symbol at the end. + */ +mod_export void +zz_plural_z_alpha(void) +{ +} +#endif + /**/ void zerrmsg(const char *fmt, const char *str, int num) |