diff options
author | Matthias Clasen <mclasen@redhat.com> | 2008-10-13 16:00:24 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2008-10-13 16:00:24 +0000 |
commit | d834ef6b2fc8af6d053fda12c9a61b9bba2bd220 (patch) | |
tree | 99e0efc16261aa91160049aeb9d196606924e98e /modules | |
parent | 9e3de2fe7f4240bf744cf2e8f27d3d743f417e9c (diff) | |
download | gtk+-d834ef6b2fc8af6d053fda12c9a61b9bba2bd220.tar.gz |
Bug 555953 – libferret missing link against libgtk-x11
2008-10-13 Matthias Clasen <mclasen@redhat.com>
Bug 555953 – libferret missing link against libgtk-x11
* modules/other/gail/test/Makefile.am: Link libferret against gtk.
svn path=/trunk/; revision=21646
Diffstat (limited to 'modules')
-rw-r--r-- | modules/other/gail/ChangeLog | 6 | ||||
-rw-r--r-- | modules/other/gail/tests/Makefile.am | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/modules/other/gail/ChangeLog b/modules/other/gail/ChangeLog index 19cb023fca..dd474bf9c3 100644 --- a/modules/other/gail/ChangeLog +++ b/modules/other/gail/ChangeLog @@ -1,3 +1,9 @@ +2008-10-13 Matthias Clasen <mclasen@redhat.com> + + Bug 555953 – libferret missing link against libgtk-x11 + + * test/Makefile.am: Link libferret against gtk. + 2008-10-07 Matthias Clasen <mclasen@redhat.com> Bug 554950 – gail must make itself resident diff --git a/modules/other/gail/tests/Makefile.am b/modules/other/gail/tests/Makefile.am index 51f5373765..f383037bb7 100644 --- a/modules/other/gail/tests/Makefile.am +++ b/modules/other/gail/tests/Makefile.am @@ -52,10 +52,12 @@ libferret_la_SOURCES = \ libferret_la_LDFLAGS = \ -rpath $(moduledir) -module -avoid-version \ - $(GTK_DEP_LIBS) \ + $(no_undefined) \ $(LDFLAGS) -libferret_la_LIBADD = \ +libferret_la_LIBADD = \ + $(top_builddir)/gtk/$(gtktargetlib) \ + $(GTK_DEP_LIBS) \ $(GAIL_INET_LIBS) endif |