# HG changeset patch # User Stu Tomlinson # Date 1180188352 0 # Node ID 637e080758a9a241ca6bb0241464d9e05dadb7d9 # Parent 5048651671e198290ddc77ef43ba34f1d4c88ef6 Disable building of directconn.c, nothing uses it, it has compile warnings and clearly needs work before it's going to be usable. diff -r 5048651671e1 -r 637e080758a9 libpurple/protocols/msn/Makefile.am --- a/libpurple/protocols/msn/Makefile.am Sat May 26 13:59:07 2007 +0000 +++ b/libpurple/protocols/msn/Makefile.am Sat May 26 14:05:52 2007 +0000 @@ -1,4 +1,6 @@ EXTRA_DIST = \ + directconn.c \ + directconn.h \ Makefile.mingw pkgdir = $(libdir)/purple-$(PURPLE_MAJOR_VERSION) @@ -12,8 +14,6 @@ contact.h\ dialog.c \ dialog.h \ - directconn.c \ - directconn.h \ error.c \ error.h \ group.c \ diff -r 5048651671e1 -r 637e080758a9 libpurple/protocols/msn/slplink.c --- a/libpurple/protocols/msn/slplink.c Sat May 26 13:59:07 2007 +0000 +++ b/libpurple/protocols/msn/slplink.c Sat May 26 14:05:52 2007 +0000 @@ -112,8 +112,10 @@ if (slplink->remote_user != NULL) g_free(slplink->remote_user); +#if 0 if (slplink->directconn != NULL) msn_directconn_destroy(slplink->directconn); +#endif while (slplink->slp_calls != NULL) msn_slp_call_destroy(slplink->slp_calls->data);