Do use -no-undefined on Win32, otherwise libtool won't create a DLL.
authorTor Lillqvist <tml@iki.fi>
Tue, 26 Feb 2002 00:32:16 +0000 (00:32 +0000)
committerTor Lillqvist <tml@src.gnome.org>
Tue, 26 Feb 2002 00:32:16 +0000 (00:32 +0000)
2002-02-26  Tor Lillqvist  <tml@iki.fi>

* atk/Makefile.am: Do use -no-undefined on Win32, otherwise
libtool won't create a DLL.

ChangeLog
atk/Makefile.am

index b3cda66..462f0a7 100644 (file)
--- 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:
index 055ca3e..988f8b9 100644 (file)
@@ -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