pidgin/pidgin

Remove old #include of http header and its init.

2019-10-17, Elliott Sales de Andrade
8a56f10bd1fb
Parents c3c470f86872
Children 9885d35c646d
Remove old #include of http header and its init.
--- a/ChangeLog.API Tue Oct 15 23:24:07 2019 -0400
+++ b/ChangeLog.API Thu Oct 17 23:36:37 2019 -0400
@@ -417,8 +417,6 @@
* PurpleEventLoopUiOps. Manually drive the GLib event loop
yourself. See GLib Main Event Loop docs.
* purple_get_tzoff_str(). Use g_date_time_format, instead.
- * purple_http_digest_calculate_response
- * purple_http_digest_calculate_session_key
* purple_ip_address_is_valid, purple_ipv4_address_is_valid, and
purple_ipv6_address_is_valid. Use g_hostname_is_ip_address()
or #GInetAddress instead.
--- a/finch/plugins/gnttinyurl.c Tue Oct 15 23:24:07 2019 -0400
+++ b/finch/plugins/gnttinyurl.c Thu Oct 17 23:36:37 2019 -0400
@@ -26,7 +26,6 @@
#define PREF_URL PREFS_BASE "/url"
#include <conversation.h>
-#include <http.h>
#include <signals.h>
#include <glib.h>
--- a/libpurple/connection.c Tue Oct 15 23:24:07 2019 -0400
+++ b/libpurple/connection.c Thu Oct 17 23:36:37 2019 -0400
@@ -27,7 +27,6 @@
#include "connection.h"
#include "debug.h"
#include "enums.h"
-#include "http.h"
#include "log.h"
#include "notify.h"
#include "prefs.h"
@@ -875,7 +874,6 @@
buddies = g_slist_delete_link(buddies, buddies);
}
- purple_http_conn_cancel_all(gc);
purple_proxy_connect_cancel_with_handle(gc);
connections = g_list_remove(connections, gc);
--- a/libpurple/core.c Tue Oct 15 23:24:07 2019 -0400
+++ b/libpurple/core.c Thu Oct 17 23:36:37 2019 -0400
@@ -26,7 +26,6 @@
#include "debug.h"
#include "xfer.h"
#include "glibcompat.h"
-#include "http.h"
#include "idle.h"
#include "image-store.h"
#include "keyring.h"
@@ -177,7 +176,6 @@
purple_stun_init();
purple_xfers_init();
purple_idle_init();
- purple_http_init();
_purple_smiley_custom_init();
_purple_smiley_parser_init();
@@ -219,7 +217,6 @@
_purple_smiley_theme_uninit();
_purple_smiley_custom_uninit();
_purple_smiley_parser_uninit();
- purple_http_uninit();
purple_idle_uninit();
purple_pounces_uninit();
purple_conversations_uninit();
--- a/libpurple/protocols/facebook/http.h Tue Oct 15 23:24:07 2019 -0400
+++ b/libpurple/protocols/facebook/http.h Thu Oct 17 23:36:37 2019 -0400
@@ -34,8 +34,6 @@
#include <glib.h>
#include <libsoup/soup.h>
-#include <libpurple/http.h>
-
/**
* FB_HTTP_ERROR:
*
--- a/libpurple/protocols/gg/avatar.c Tue Oct 15 23:24:07 2019 -0400
+++ b/libpurple/protocols/gg/avatar.c Thu Oct 17 23:36:37 2019 -0400
@@ -31,7 +31,6 @@
#include <debug.h>
#include <glibcompat.h>
-#include <http.h>
#include "gg.h"
#include "utils.h"
--- a/libpurple/protocols/gg/edisc.c Tue Oct 15 23:24:07 2019 -0400
+++ b/libpurple/protocols/gg/edisc.c Thu Oct 17 23:36:37 2019 -0400
@@ -33,7 +33,6 @@
#include "gg.h"
#include "libgaduw.h"
#include "utils.h"
-#include <http.h>
#include <json-glib/json-glib.h>
--- a/libpurple/protocols/gg/oauth/oauth-purple.c Tue Oct 15 23:24:07 2019 -0400
+++ b/libpurple/protocols/gg/oauth/oauth-purple.c Thu Oct 17 23:36:37 2019 -0400
@@ -35,7 +35,6 @@
#include "../xml.h"
#include <debug.h>
-#include <http.h>
#define GGP_OAUTH_RESPONSE_MAX 10240
--- a/libpurple/protocols/gg/pubdir-prpl.c Tue Oct 15 23:24:07 2019 -0400
+++ b/libpurple/protocols/gg/pubdir-prpl.c Thu Oct 17 23:36:37 2019 -0400
@@ -31,7 +31,6 @@
#include "gg.h"
#include <debug.h>
-#include <http.h>
#include <request.h>
#include "oauth/oauth-purple.h"
--- a/libpurple/protocols/jabber/bosh.c Tue Oct 15 23:24:07 2019 -0400
+++ b/libpurple/protocols/jabber/bosh.c Thu Oct 17 23:36:37 2019 -0400
@@ -23,7 +23,6 @@
#include "internal.h"
#include "core.h"
#include "debug.h"
-#include "http.h"
#include <libsoup/soup.h>
--- a/libpurple/protocols/jabber/google/relay.c Tue Oct 15 23:24:07 2019 -0400
+++ b/libpurple/protocols/jabber/google/relay.c Thu Oct 17 23:36:37 2019 -0400
@@ -20,7 +20,6 @@
#include "internal.h"
#include "debug.h"
-#include "http.h"
#include "relay.h"
--- a/libpurple/protocols/jabber/jabber.c Tue Oct 15 23:24:07 2019 -0400
+++ b/libpurple/protocols/jabber/jabber.c Thu Oct 17 23:36:37 2019 -0400
@@ -29,7 +29,6 @@
#include "connection.h"
#include "conversation.h"
#include "debug.h"
-#include "http.h"
#include "message.h"
#include "notify.h"
#include "pluginpref.h"
--- a/libpurple/protocols/jabber/jabber.h Tue Oct 15 23:24:07 2019 -0400
+++ b/libpurple/protocols/jabber/jabber.h Thu Oct 17 23:36:37 2019 -0400
@@ -64,7 +64,6 @@
#include "attention.h"
#include "circularbuffer.h"
#include "connection.h"
-#include "http.h"
#include "media.h"
#include "mediamanager.h"
#include "protocol.h"
--- a/libpurple/protocols/jabber/oob.c Tue Oct 15 23:24:07 2019 -0400
+++ b/libpurple/protocols/jabber/oob.c Thu Oct 17 23:36:37 2019 -0400
@@ -23,7 +23,6 @@
#include "internal.h"
#include "debug.h"
#include "xfer.h"
-#include "http.h"
#include "util.h"
#include "jabber.h"
--- a/libpurple/protocols/jabber/useravatar.c Tue Oct 15 23:24:07 2019 -0400
+++ b/libpurple/protocols/jabber/useravatar.c Thu Oct 17 23:36:37 2019 -0400
@@ -25,7 +25,6 @@
#include <libsoup/soup.h>
-#include "http.h"
#include "useravatar.h"
#include "pep.h"
#include "debug.h"
--- a/libpurple/protocols/oscar/oscar.h Tue Oct 15 23:24:07 2019 -0400
+++ b/libpurple/protocols/oscar/oscar.h Thu Oct 17 23:36:37 2019 -0400
@@ -33,7 +33,6 @@
#include "circularbuffer.h"
#include "debug.h"
#include "eventloop.h"
-#include "http.h"
#include "proxy.h"
#include "sslconn.h"
--- a/libpurple/proxy.c Tue Oct 15 23:24:07 2019 -0400
+++ b/libpurple/proxy.c Thu Oct 17 23:36:37 2019 -0400
@@ -27,7 +27,6 @@
#include "internal.h"
#include "debug.h"
-#include "http.h"
#include "notify.h"
#include "prefs.h"
#include "proxy.h"
--- a/libpurple/upnp.c Tue Oct 15 23:24:07 2019 -0400
+++ b/libpurple/upnp.c Thu Oct 17 23:36:37 2019 -0400
@@ -27,7 +27,6 @@
#include "debug.h"
#include "eventloop.h"
-#include "http.h"
#include "network.h"
#include "proxy.h"
#include "signals.h"
--- a/pidgin/gtkprefs.c Tue Oct 15 23:24:07 2019 -0400
+++ b/pidgin/gtkprefs.c Thu Oct 17 23:36:37 2019 -0400
@@ -26,7 +26,6 @@
#include "pidgin.h"
#include "debug.h"
-#include "http.h"
#include "nat-pmp.h"
#include "notify.h"
#include "prefs.h"
--- a/pidgin/gtksmiley-manager.c Tue Oct 15 23:24:07 2019 -0400
+++ b/pidgin/gtksmiley-manager.c Thu Oct 17 23:36:37 2019 -0400
@@ -23,7 +23,6 @@
#include "internal.h"
#include "debug.h"
-#include "http.h"
#include "notify.h"
#include "smiley.h"
#include "smiley-custom.h"
--- a/pidgin/plugins/imgupload.c Tue Oct 15 23:24:07 2019 -0400
+++ b/pidgin/plugins/imgupload.c Thu Oct 17 23:36:37 2019 -0400
@@ -23,7 +23,6 @@
#include "debug.h"
#include "glibcompat.h"
-#include "http.h"
#include "version.h"
#include "gtk3compat.h"
--- a/pidgin/plugins/relnot.c Tue Oct 15 23:24:07 2019 -0400
+++ b/pidgin/plugins/relnot.c Thu Oct 17 23:36:37 2019 -0400
@@ -34,7 +34,6 @@
#include "gtkblist.h"
#include "gtkplugin.h"
#include "gtkutils.h"
-#include "http.h"
#include "notify.h"
#include "pidginicon.h"
#include "prefs.h"