summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2002-02-26 00:32:16 +0000
committerTor Lillqvist <tml@src.gnome.org>2002-02-26 00:32:16 +0000
commit630d9f29e6f5a06c901970b39f65cd7d5be16154 (patch)
tree7158d429013760b85d8d3a8f6ecba2790056af49
parent613073e0691d723823a503fde4b0c34882aa04f5 (diff)
downloadatk-630d9f29e6f5a06c901970b39f65cd7d5be16154.tar.gz
Do use -no-undefined on Win32, otherwise libtool won't create a DLL.
2002-02-26 Tor Lillqvist <tml@iki.fi> * atk/Makefile.am: Do use -no-undefined on Win32, otherwise libtool won't create a DLL.
-rw-r--r--ChangeLog5
-rw-r--r--atk/Makefile.am2
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index b3cda66..462f0a7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-02-26 Tor Lillqvist <tml@iki.fi>
+
+ * atk/Makefile.am: Do use -no-undefined on Win32, otherwise
+ libtool won't create a DLL.
+
2002-02-25 Padraig O'Briain <padraig.obriain@sun.com>
* atk/Makefile.am:
diff --git a/atk/Makefile.am b/atk/Makefile.am
index 055ca3e..988f8b9 100644
--- a/atk/Makefile.am
+++ b/atk/Makefile.am
@@ -5,6 +5,7 @@ GPATH = $(srcdir)
EXTRA_DIST = atk.def
if OS_WIN32
export_symbols = -export-symbols atk.def
+no_undefined = -no-undefined
install-libtool-import-lib:
$(INSTALL) .libs/libatk.dll.a $(DESTDIR)$(libdir)
@@ -76,6 +77,7 @@ INCLUDES = \
LDFLAGS = \
-version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \
$(export_symbols) \
+ $(no_undefined) \
@DEP_LIBS@
libatkincludedir=$(includedir)/atk-1.0/atk