summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorSebastian Dröge <sebastian@centricular.com>2014-02-14 22:50:49 +0100
committerSebastian Dröge <sebastian@centricular.com>2014-02-14 22:53:54 +0100
commit2b15ae4ecd75d479a469311aac165bff8be4af96 (patch)
treef1773e4cf7a491e31b4b6ea1076da91601f24b69 /configure.ac
parent577d87300906f961d13f76b44ba60fc40f0c637a (diff)
soup: We need libsoup >= 2.40 for proper usage of the content decoder
Previous versions did not consider our chunk allocator and allocated memory by themselves, which caused crashes and broken behaviour.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index f1bfc4813..d38d87653 100644
--- a/configure.ac
+++ b/configure.ac
@@ -849,7 +849,7 @@ AG_GST_CHECK_FEATURE(SHOUT2, [Shoutcast/Icecast client library], shout2, [
dnl *** soup ***
translit(dnm, m, l) AM_CONDITIONAL(USE_SOUP, true)
AG_GST_CHECK_FEATURE(SOUP, [soup http client plugin (2.4)], souphttpsrc, [
- PKG_CHECK_MODULES(SOUP, libsoup-2.4 >= 2.38, [HAVE_SOUP="yes"], [HAVE_SOUP="no"])
+ PKG_CHECK_MODULES(SOUP, libsoup-2.4 >= 2.40, [HAVE_SOUP="yes"], [HAVE_SOUP="no"])
AC_SUBST(SOUP_CFLAGS)
AC_SUBST(SOUP_LIBS)
])