summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2006-06-19 14:07:24 +0000
committerTim-Philipp Müller <tim@centricular.net>2006-06-19 14:07:24 +0000
commit85db24636adb6223d73395d51762e6923847883a (patch)
tree159d0b7280a3df173a7bcb59500070334eb35e6c /configure.ac
parent4e48509c4d2e26cf3b132edaaab59866de6fe565 (diff)
downloadgst-plugins-bad-85db24636adb6223d73395d51762e6923847883a.tar.gz
gst-plugins-bad-85db24636adb6223d73395d51762e6923847883a.tar.bz2
gst-plugins-bad-85db24636adb6223d73395d51762e6923847883a.zip
configure.ac: Fix check so that future libneon API changes won't break the build.
Original commit message from CVS: * configure.ac: Fix check so that future libneon API changes won't break the build. * ext/neon/gstneonhttpsrc.c: Fix build with libneon-0.26.x (#345182).
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 8d267d23..7e731092 100644
--- a/configure.ac
+++ b/configure.ac
@@ -564,7 +564,7 @@ GST_CHECK_FEATURE(MUSICBRAINZ, [musicbrainz tag generation], musicbrainz, [
dnl *** neon ***
translit(dnm, m, l) AM_CONDITIONAL(USE_NEON, true)
GST_CHECK_FEATURE(NEON, [neon http client plugins], neonhttpsrc, [
- PKG_CHECK_MODULES(NEON, neon >= 0.25.5, HAVE_NEON="yes", [
+ PKG_CHECK_MODULES(NEON, neon >= 0.25.5 neon <= 0.26.99, HAVE_NEON="yes", [
HAVE_NEON="no"
AC_MSG_RESULT(no)
])