Fix cross compile for Windows
This commit is contained in:
parent
57dd2c6a89
commit
ab6a27d184
2 changed files with 6 additions and 0 deletions
|
@ -2,6 +2,9 @@ AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/librb/include $(LTDLINCL)
|
|||
AM_LDFLAGS = -module -export-dynamic -avoid-version -no-undefined -shared
|
||||
AM_LDFLAGS += -export-symbols-regex _mheader
|
||||
LIBS += $(top_srcdir)/ircd/libircd.la
|
||||
if MINGW
|
||||
LIBS += $(top_srcdir)/librb/src/librb.la
|
||||
endif
|
||||
|
||||
extensiondir=@moduledir@/extensions
|
||||
|
||||
|
|
|
@ -4,6 +4,9 @@ AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/librb/include $(LTDLINCL)
|
|||
AM_LDFLAGS = -module -export-dynamic -avoid-version -no-undefined -shared
|
||||
AM_LDFLAGS += -export-symbols-regex _mheader
|
||||
LIBS += $(top_srcdir)/ircd/libircd.la
|
||||
if MINGW
|
||||
LIBS += $(top_srcdir)/librb/src/librb.la
|
||||
endif
|
||||
|
||||
auto_load_moddir=@moduledir@/autoload
|
||||
|
||||
|
|
Loading…
Reference in a new issue