diff options
author | David Schleef <ds@schleef.org> | 2003-04-04 22:22:15 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2003-04-04 22:22:15 +0000 |
commit | e04f7c36878bfc0aa24eaebcb48b782cce06bd9a (patch) | |
tree | 6e8a5fe081602d1a234d5bba1a1a7bd1332bfa4f /configure.ac | |
parent | e98706d4e45f53b9d717f3d0aaf889e1a11b5eca (diff) | |
download | gst-plugins-bad-e04f7c36878bfc0aa24eaebcb48b782cce06bd9a.tar.gz gst-plugins-bad-e04f7c36878bfc0aa24eaebcb48b782cce06bd9a.tar.bz2 gst-plugins-bad-e04f7c36878bfc0aa24eaebcb48b782cce06bd9a.zip |
Correct fix for #109048. Disable qcamsrc plugin if non-i386.
Original commit message from CVS:
Correct fix for #109048. Disable qcamsrc plugin if non-i386.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 668d359a..16586677 100644 --- a/configure.ac +++ b/configure.ac @@ -279,11 +279,10 @@ 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, [ -dnl this one is for hadess, no qcam when no nasm found - if test "x$HAVE_NASM" = "xno"; + if test "x$HAVE_CPU_I386" = "xno"; then HAVE_QCAM="no" - AC_MSG_WARN([QuickCam needs nasm]) + AC_MSG_WARN([QuickCam only works on i386]) else HAVE_QCAM="yes" fi |