From 9d16a01cfb9a92b75416895c44120d42a1c4c704 Mon Sep 17 00:00:00 2001 From: James Henstridge Date: Wed, 6 Mar 2002 23:34:11 +0000 Subject: [PATCH] link pixbuf engine against the gtk+ libraries, so that it can be used with 2002-03-07 James Henstridge * Makefile.am (libpixmap_la_LIBADD): link pixbuf engine against the gtk+ libraries, so that it can be used with programs that dlopen gtk+ without the RTLD_GLOBAL flag (such as scripting languages and mozilla). --- modules/engines/pixbuf/ChangeLog | 7 +++++++ modules/engines/pixbuf/Makefile.am | 1 + 2 files changed, 8 insertions(+) diff --git a/modules/engines/pixbuf/ChangeLog b/modules/engines/pixbuf/ChangeLog index a99ca73a47..3bb0f8aef1 100644 --- a/modules/engines/pixbuf/ChangeLog +++ b/modules/engines/pixbuf/ChangeLog @@ -1,3 +1,10 @@ +2002-03-07 James Henstridge + + * Makefile.am (libpixmap_la_LIBADD): link pixbuf engine against + the gtk+ libraries, so that it can be used with programs that + dlopen gtk+ without the RTLD_GLOBAL flag (such as scripting + languages and mozilla). + Thu Feb 7 00:21:21 2002 Owen Taylor * pixbuf-render.c (pixbuf_render): Add gradient diff --git a/modules/engines/pixbuf/Makefile.am b/modules/engines/pixbuf/Makefile.am index d3e6bdef40..9a0ded4b0f 100644 --- a/modules/engines/pixbuf/Makefile.am +++ b/modules/engines/pixbuf/Makefile.am @@ -14,6 +14,7 @@ libpixmap_la_SOURCES = \ pixbuf.h libpixmap_la_LDFLAGS = -avoid-version -module +libpixmap_la_LIBADD = $(GTK_LIBS) dist-hook: cp -pr examples $(distdir); \