From: David Schleef Date: Fri, 4 Apr 2003 22:22:15 +0000 (+0000) Subject: Correct fix for #109048. Disable qcamsrc plugin if non-i386. X-Git-Tag: 1.19.3~511^2~15481 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5ed75a034cc71a17b1fff4c0eefb474682cb1c0e;p=platform%2Fupstream%2Fgstreamer.git 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. --- diff --git a/configure.ac b/configure.ac index 668d359aad..1658667793 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