From 75777b23048697d01e583f81533ca295920a266e Mon Sep 17 00:00:00 2001 From: "Alex-P. Natsios" Date: Fri, 29 Mar 2013 22:14:34 +0900 Subject: [PATCH] Fixed behavior of --disable{-xine,-v4l2} --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 4610cfc97e..c8b1f9b723 100644 --- a/configure.ac +++ b/configure.ac @@ -3449,7 +3449,7 @@ AC_ARG_ENABLE([xine], [AC_HELP_STRING([--enable-xine], [enable xine support. @<:@default=disabled@:>@])], [ - if test "x${withval}" = "xyes" ; then + if test "x${enableval}" = "xyes" ; then want_xine="yes" else want_xine="no" @@ -3460,7 +3460,7 @@ AC_ARG_ENABLE([xine], AC_ARG_ENABLE([v4l2], [AC_HELP_STRING([--enable-v4l2], [enable v4l2 support.])], [ - if test "x${withval}" = "xyes" ; then + if test "x${enableval}" = "xyes" ; then want_v4l2="yes" else want_v4l2="no"