summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Nocera <hadess@hadess.net>2017-12-08 11:47:24 +0100
committerBastien Nocera <hadess@hadess.net>2017-12-08 11:47:24 +0100
commitcaaa3752dc6fa765392ed2a49900da356da30441 (patch)
tree0a6a32a3ad757df93b9b73fb0a516d0d49383d3a
parent686b64f9eba5e80ef8d53ca3041ae48c88b96b5a (diff)
downloadtotem-pl-parser-caaa3752dc6fa765392ed2a49900da356da30441.tar.gz
build: Remove libsoup dependency
We don't actually use it.
-rw-r--r--README1
-rw-r--r--meson.build4
-rw-r--r--plparse/totem-pl-parser-podcast.c1
3 files changed, 1 insertions, 5 deletions
diff --git a/README b/README
index bc27dbb..7e4e299 100644
--- a/README
+++ b/README
@@ -17,7 +17,6 @@ Dependencies
glib >= 2.36
gmime >= 2.6 or >= 3.0
-libsoup >= 2.44
libxml2
libquvi >= 0.9.1 (optional)
diff --git a/meson.build b/meson.build
index cca923d..1c126c5 100644
--- a/meson.build
+++ b/meson.build
@@ -34,16 +34,14 @@ glib_req = '>= 2.36.0'
gio_req = '>= 2.24.0'
quvi_req = '>= 0.9.1'
archive_req = '>= 3.0'
-soup_req = '>= 2.43.0'
# Dependencies
glib_dep = dependency('glib-2.0', version : glib_req)
gthread_dep = dependency('gthread-2.0', version : glib_req)
gio_dep = dependency('gio-2.0', version : gio_req)
xml_dep = dependency('libxml-2.0')
-soup_dep = dependency('libsoup-2.4', version: soup_req)
-totem_pl_parser_deps = [glib_dep, xml_dep, gthread_dep, gio_dep, soup_dep]
+totem_pl_parser_deps = [glib_dep, xml_dep, gthread_dep, gio_dep]
# project-wide cflags
add_project_arguments('-D_GNU_SOURCE', language: 'c')
diff --git a/plparse/totem-pl-parser-podcast.c b/plparse/totem-pl-parser-podcast.c
index 9ecaae0..62cca92 100644
--- a/plparse/totem-pl-parser-podcast.c
+++ b/plparse/totem-pl-parser-podcast.c
@@ -25,7 +25,6 @@
#include <glib.h>
#ifndef TOTEM_PL_PARSER_MINI
-#include <libsoup/soup.h>
#include "xmlparser.h"
#include "totem-pl-parser.h"
#include "totem-disc.h"