From 6fb8353be86b3f36a89bfafafe450e196c27ca23 Mon Sep 17 00:00:00 2001 From: "cbiesinger%web.de" Date: Sun, 23 Apr 2006 15:40:09 +0000 Subject: [PATCH] fixing thunderbird/gtk2 bustage from bug 333640: link to $(TK_LIBS) on gtk2 as well, like in browser/components/build/Makefile.in --- mail/components/build/Makefile.in | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mail/components/build/Makefile.in b/mail/components/build/Makefile.in index 89650ece0d1..7ee46db41bb 100644 --- a/mail/components/build/Makefile.in +++ b/mail/components/build/Makefile.in @@ -85,8 +85,9 @@ EXTRA_DSO_LDOPTS += \ $(MOZ_COMPONENT_LIBS) \ $(NULL) -# Need to link to CoreFoundation for Mac shell service -ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT))) +# Mac: Need to link to CoreFoundation for Mac shell service +# GTK2: Need to link with glib for GNOME shell service +ifneq (,$(filter mac cocoa gtk2,$(MOZ_WIDGET_TOOLKIT))) EXTRA_DSO_LDOPTS += \ $(TK_LIBS) \ $(NULL)