commit 1dc9b3ed949eeb3b4506df7c630fd0fe66c6249c parent 1b899808550a55a1e51959cf6f7339585c17e816 Author: Andrej Kacian <ticho@claws-mail.org> Date: Wed, 3 Jun 2015 19:59:06 +0200 Pass --export-* flags correctly to the linker, depending on platform. Diffstat:
| M | src/Makefile.am | | | 6 | +++--- |
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/Makefile.am b/src/Makefile.am @@ -540,13 +540,13 @@ IFLAGS = \ -I$(srcdir)/etpan if PLATFORM_WIN32 -arch_ldflags := -export-all-symbols +arch_ldflags := -Wl,--export-all-symbols else -arch_ldflags := +arch_ldflags := -Wl,--export-dynamic endif claws_mail_LDFLAGS = \ - $(arch_ldflags) -export-dynamic $(claws_mail_res_ldflag) + $(arch_ldflags) $(claws_mail_res_ldflag) claws_mail_DEPENDENCIES = $(claws_mail_deps) \ $(etpan_library) \