diff options
-rw-r--r-- | configure.ac | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 857f96cb..57a6fa03 100644 --- a/configure.ac +++ b/configure.ac @@ -279,7 +279,16 @@ 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, HAVE_QCAM="yes") +GST_CHECK_FEATURE(QCAM, [QuickCam], qcamsrc, [ +dnl this one is for hadess, no qcam when no nasm found + if test "x$HAVE_NASM" = "xno"; + then + HAVE_QCAM="no" + AC_MSG_WARN([QuickCam needs nasm]) + else + HAVE_QCAM="yes" + fi +]) dnl *** Video 4 Linux *** translit(dnm, m, l) AM_CONDITIONAL(USE_V4L, true) |