summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2005-09-01 19:56:17 +0000
committerTim-Philipp Müller <tim@centricular.net>2005-09-01 19:56:17 +0000
commit3bdae5ce26dde706ae016800e036c28b9a5706a2 (patch)
treebf4f9a174ec050c14d2b57cdf3181e992f8ef080 /configure.ac
parent706d74d0df48083f9078d05170f39473f6ff5266 (diff)
downloadgst-plugins-bad-3bdae5ce26dde706ae016800e036c28b9a5706a2.tar.gz
gst-plugins-bad-3bdae5ce26dde706ae016800e036c28b9a5706a2.tar.bz2
gst-plugins-bad-3bdae5ce26dde706ae016800e036c28b9a5706a2.zip
configure.ac: Our cairo plugin code seems to be unaffected by the last bunch of cairo API chances and seems to work w...
Original commit message from CVS: * configure.ac: Our cairo plugin code seems to be unaffected by the last bunch of cairo API chances and seems to work with any cairo version between 0.5.0 and 1.0.0, so let's adjust our checks accordingly.
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 24b761f6..98515bc5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -875,7 +875,7 @@ GST_CHECK_FEATURE(AUDIORESAMPLE, [audioresample plug-in], audioresample, [
dnl *** cairo ***
translit(dnm, m, l) AM_CONDITIONAL(USE_CAIRO, true)
GST_CHECK_FEATURE(CAIRO, [cairo plug-in], cairo, [
- PKG_CHECK_MODULES(CAIRO, cairo >= 0.5.0 cairo < 0.6.0, HAVE_CAIRO=yes, HAVE_CAIRO=no)
+ PKG_CHECK_MODULES(CAIRO, cairo >= 0.5.0, HAVE_CAIRO=yes, HAVE_CAIRO=no)
AC_SUBST(CAIRO_CFLAGS)
AC_SUBST(CAIRO_LIBS)
])