[atk] atk/Makefile.am: Stop reading atk.def



commit cbf8e493f67993dd3d430d016be48822d854f749
Author: Benjamin Gilbert <bgilbert cs cmu edu>
Date:   Fri May 23 13:56:19 2014 -0400

    atk/Makefile.am: Stop reading atk.def
    
    Since 41442d82 we no longer generate atk.def, but we were still reading
    it when linking libatk on MinGW.  This was causing a build failure:
    
          CC       atkwindow.lo
          CC       atk-enum-types.lo
        /usr/bin/i686-w64-mingw32-windres atk.rc atk-win32-res.o
          CCLD     libatk-1.0.la
        libtool: link: symbol file `atk.def' does not exist
        make[3]: *** [libatk-1.0.la] Error 1
    
    https://bugzilla.gnome.org/show_bug.cgi?id=730859

 atk/Makefile.am |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/atk/Makefile.am b/atk/Makefile.am
index 0db10b3..7c1da96 100644
--- a/atk/Makefile.am
+++ b/atk/Makefile.am
@@ -191,7 +191,7 @@ endif
 # ---------- Win32 stuff ----------
 
 if OS_WIN32
-libatk_1_0_la_LDFLAGS += -export-symbols atk.def -no-undefined -Wl,atk-win32-res.o
+libatk_1_0_la_LDFLAGS += -no-undefined -Wl,atk-win32-res.o
 libatk_1_0_la_DEPENDENCIES = atk-win32-res.o
 endif
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]