From b5c0180c4bc2270ff7ad83ff5ee7c28f7d2993ce Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Sun, 20 Mar 2016 02:08:14 -0500 Subject: [PATCH] ircd: build: tell libtool what to DLL_EXPORT --- ircd/Makefile.am | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ircd/Makefile.am b/ircd/Makefile.am index 03f30a50..20370488 100644 --- a/ircd/Makefile.am +++ b/ircd/Makefile.am @@ -14,6 +14,10 @@ version.c: version.c.SH ../CREDITS ../include/patchlevel.h ../include/serno.h $(CP) version.c version.c.last touch version.c.SH +if MINGW +EXTRA_FLAGS = -Wl,--enable-runtime-pseudo-reloc -export-symbols-regex '*' +endif + libircd_la_SOURCES = \ authd.c \ bandbi.c \