diff options
author | David Schleef <ds@schleef.org> | 2003-04-05 20:09:05 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2003-04-05 20:09:05 +0000 |
commit | 7bfc131d343bab54f64a04798ea310b56049b479 (patch) | |
tree | 88aeb5a57f2b8dce177dcf74b451ccd20b432bf0 | |
parent | 0cdfc4adb9bd410a3655168464c19e00ec5a7583 (diff) | |
download | gst-plugins-bad-7bfc131d343bab54f64a04798ea310b56049b479.tar.gz gst-plugins-bad-7bfc131d343bab54f64a04798ea310b56049b479.tar.bz2 gst-plugins-bad-7bfc131d343bab54f64a04798ea310b56049b479.zip |
Fix the QCAM detection. (Correctly, this time.) Should go into 0.6.1
Original commit message from CVS:
Fix the QCAM detection. (Correctly, this time.) Should go into 0.6.1
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 16586677..790ae53b 100644 --- a/configure.ac +++ b/configure.ac @@ -279,7 +279,7 @@ GST_CHECK_FEATURE(OSS, [OSS audio], osssrc osssink, [ dnl *** QuickCam *** translit(dnm, m, l) AM_CONDITIONAL(USE_QCAM, true) GST_CHECK_FEATURE(QCAM, [QuickCam], qcamsrc, [ - if test "x$HAVE_CPU_I386" = "xno"; + if test "x$HAVE_CPU_I386" != "xyes"; then HAVE_QCAM="no" AC_MSG_WARN([QuickCam only works on i386]) |