Mercurial > pidgin
view plugins/ssl/Makefile.am @ 7311:1c8830db0189
[gaim-migrate @ 7895]
Conversation windows kept a GaimBuddyIcon set even after the icon was
destroyed. Now all conversations containing the icon being destroyed are
updated to remove the icon. This fixes bug #826527, which javabsp closed
a bit too prematurely ;) However, because GaimConversation references it,
this should never actually happen, so I suspect something else is
happening, but sanity statements are good anyway.
committer: Tailor Script <tailor@pidgin.im>
author | Christian Hammond <chipx86@chipx86.com> |
---|---|
date | Tue, 21 Oct 2003 17:41:57 +0000 |
parents | c7dc0dba2c2c |
children | 2cc05a9e944d |
line wrap: on
line source
EXTRA_DIST = \ Makefile.mingw plugindir = $(libdir)/gaim ssl_la_LDFLAGS = -module -avoid-version ssl_gnutls_la_LDFLAGS = -module -avoid-version ssl_nss_la_LDFLAGS = -module -avoid-version if PLUGINS plugin_LTLIBRARIES = \ ssl.la \ ssl-gnutls.la \ ssl-nss.la ssl_la_SOURCES = ssl.c ssl_gnutls_la_SOURCES = ssl-gnutls.c ssl_nss_la_SOURCES = ssl-nss.c ssl_gnutls_la_LIBADD = $(GNUTLS_LIBS) ssl_nss_la_LIBADD = $(NSS_LIBS) endif # PLUGINS AM_CPPFLAGS = \ -DDATADIR=\"$(datadir)\" \ -DLIBDIR=\"$(libdir)/gaim/\" \ -I$(top_srcdir)/src \ $(DEBUG_CFLAGS) \ $(GTK_CFLAGS) \ $(PLUGIN_CFLAGS) \ $(NSS_CFLAGS) \ $(GNUTLS_CFLAGS)