From: Tor Lillqvist Date: Tue, 26 Feb 2002 00:32:16 +0000 (+0000) Subject: Do use -no-undefined on Win32, otherwise libtool won't create a DLL. X-Git-Tag: ATK_1_0_0_RC1~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=630d9f29e6f5a06c901970b39f65cd7d5be16154;p=platform%2Fupstream%2Fatk.git Do use -no-undefined on Win32, otherwise libtool won't create a DLL. 2002-02-26 Tor Lillqvist * atk/Makefile.am: Do use -no-undefined on Win32, otherwise libtool won't create a DLL. --- diff --git a/ChangeLog b/ChangeLog index b3cda66..462f0a7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2002-02-26 Tor Lillqvist + + * atk/Makefile.am: Do use -no-undefined on Win32, otherwise + libtool won't create a DLL. + 2002-02-25 Padraig O'Briain * 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