Fixed behavior of --disable{-xine,-v4l2}

This commit is contained in:
Alex-P. Natsios 2013-03-29 22:14:34 +09:00 committed by Carsten Haitzler (Rasterman)
parent 22bccb7e1e
commit 75777b2304
1 changed files with 2 additions and 2 deletions

View File

@ -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"