Mercurial > pidgin
view libpurple/protocols/yahoo/Makefile.am @ 17664:8ee3fd09a543
Remove lots of debugging statements, no longer needed.
Along with 172d2f1fc811dba4cf65d127b27a799d1e121b58, this patch (I believe)
fixes #193. The problem was that msim_close() was being called twice. Removed
spurious calls, and no longer appears to crash.
This now works:
* Login with an invalid password.
* `Protocol error, code 260: The password provided is incorrect.` (good)
* Disable, and re-enable account.
* Receive the same error message (good, no crash).
* Repeat previous two steps ''ad nauseum'', with no crash.
Closes #193.
author | Jeffrey Connelly <jaconnel@calpoly.edu> |
---|---|
date | Mon, 25 Jun 2007 05:24:44 +0000 |
parents | 441945083737 |
children | 32cd31e9033d 08a6a01b7ebe |
line wrap: on
line source
EXTRA_DIST = \ Makefile.mingw pkgdir = $(libdir)/purple-$(PURPLE_MAJOR_VERSION) YAHOOSOURCES = \ util.c \ yahoo.c \ yahoo.h \ yahoochat.h \ yahoochat.c \ yahoo_auth.c \ yahoo_auth.h \ yahoo_crypt.h \ yahoo_crypt.c \ yahoo_doodle.h \ yahoo_doodle.c \ yahoo_filexfer.h \ yahoo_filexfer.c \ yahoo_friend.h \ yahoo_friend.c \ yahoo_packet.h \ yahoo_packet.c \ yahoo_picture.c \ yahoo_picture.h \ yahoo_profile.c \ ycht.c \ ycht.h AM_CFLAGS = $(st) libyahoo_la_LDFLAGS = -module -avoid-version if STATIC_YAHOO st = -DPURPLE_STATIC_PRPL noinst_LIBRARIES = libyahoo.a libyahoo_a_SOURCES = $(YAHOOSOURCES) libyahoo_a_CFLAGS = $(AM_CFLAGS) else st = pkg_LTLIBRARIES = libyahoo.la libyahoo_la_SOURCES = $(YAHOOSOURCES) libyahoo_la_LIBADD = $(GLIB_LIBS) endif AM_CPPFLAGS = \ -I$(top_srcdir)/libpurple \ -I$(top_builddir)/libpurple \ $(GLIB_CFLAGS) \ $(DEBUG_CFLAGS)