diff options
author | Siraj Razick <siraj.razick@collabora.co.uk> | 2012-01-24 20:44:11 -0500 |
---|---|---|
committer | Siraj Razick <siraj.razick@collabora.co.uk> | 2012-02-01 14:48:43 -0500 |
commit | b09e276c0d8cd54ce061af5f4cf66cc704aace21 (patch) | |
tree | 26c5985393e7c7a355c27fc13c7214110c9c6fb6 | |
parent | 3412e56f72c36eb48c83742257b8a5f9b6b6f603 (diff) |
Produce .dll files when compiling for windows
Add -no-undefined option so that .dll files are created during
windows builds.
-rw-r--r-- | gabble/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gabble/Makefile.am b/gabble/Makefile.am index e0ad1bf..52eddbd 100644 --- a/gabble/Makefile.am +++ b/gabble/Makefile.am @@ -9,7 +9,7 @@ plugindir = $(gabbleplugindir) plugin_LTLIBRARIES = ytstenut-gabble.la -AM_LDFLAGS = -module -avoid-version -shared +AM_LDFLAGS = -module -avoid-version -no-undefined -shared ytstenut_gabble_la_LIBADD = \ $(GABBLE_LIBS) \ |