summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2008-02-07 12:05:44 +0000
committerTim-Philipp Müller <tim@centricular.net>2008-02-07 12:05:44 +0000
commit120a00c2e7434d26caa9d72b7c00221d1917cf22 (patch)
treea4538bb04f2b08f40a0ec1211d35cdc3d81417d1 /configure.ac
parentb11181550e15989559b7ae4aba87e3c995876b54 (diff)
downloadgst-plugins-bad-120a00c2e7434d26caa9d72b7c00221d1917cf22.tar.gz
gst-plugins-bad-120a00c2e7434d26caa9d72b7c00221d1917cf22.tar.bz2
gst-plugins-bad-120a00c2e7434d26caa9d72b7c00221d1917cf22.zip
configure.ac: The dc1394 plugin seems to use API that was removed or changed before the final 2.0.0 release, so only ...
Original commit message from CVS: * configure.ac: The dc1394 plugin seems to use API that was removed or changed before the final 2.0.0 release, so only build it if 2.0.0-rc5 is available. Someone needs to port it to the final API. * ext/dc1394/gstdc1394.c: (gst_dc1394_change_camera_transmission): Include string.h for memcpy and use g_usleep instead of usleep.
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 f5ba905a..264043de 100644
--- a/configure.ac
+++ b/configure.ac
@@ -377,7 +377,7 @@ AG_GST_CHECK_FEATURE(CDAUDIO, [cdaudio], cdaudio, [
dnl *** dc1394 ***
translit(dnm, m, l) AM_CONDITIONAL(USE_DC1394, true)
AG_GST_CHECK_FEATURE(DC1394, [libdc1394], dc1394, [
- PKG_CHECK_MODULES(LIBDC1394, libdc1394-2 >= 2.0.0-rc5, HAVE_DC1394="yes", [
+ PKG_CHECK_MODULES(LIBDC1394, libdc1394-2 == 2.0.0-rc5, HAVE_DC1394="yes", [
HAVE_DC1394="no"
AC_MSG_RESULT(no)
])