mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
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.
This commit is contained in:
parent
996b613d22
commit
5ed75a034c
1 changed files with 2 additions and 3 deletions
|
@ -279,11 +279,10 @@ GST_CHECK_FEATURE(OSS, [OSS audio], osssrc osssink, [
|
||||||
dnl *** QuickCam ***
|
dnl *** QuickCam ***
|
||||||
translit(dnm, m, l) AM_CONDITIONAL(USE_QCAM, true)
|
translit(dnm, m, l) AM_CONDITIONAL(USE_QCAM, true)
|
||||||
GST_CHECK_FEATURE(QCAM, [QuickCam], qcamsrc, [
|
GST_CHECK_FEATURE(QCAM, [QuickCam], qcamsrc, [
|
||||||
dnl this one is for hadess, no qcam when no nasm found
|
if test "x$HAVE_CPU_I386" = "xno";
|
||||||
if test "x$HAVE_NASM" = "xno";
|
|
||||||
then
|
then
|
||||||
HAVE_QCAM="no"
|
HAVE_QCAM="no"
|
||||||
AC_MSG_WARN([QuickCam needs nasm])
|
AC_MSG_WARN([QuickCam only works on i386])
|
||||||
else
|
else
|
||||||
HAVE_QCAM="yes"
|
HAVE_QCAM="yes"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue