Print default audio/video providers properly at the end of configure.

Originally committed to SVN as r5550.
This commit is contained in:
Niels Martin Hansen 2011-08-20 18:56:30 +00:00
parent c3e56fbe7b
commit b6bf91743f
1 changed files with 2 additions and 2 deletions

View File

@ -1196,7 +1196,7 @@ AC_ARG_WITH(player-audio, [ --with-player-audio=(alsa|openal|portaudio|pulseaud
if ! test -z "$with_provider_video"; then
default_provider_video="$with_provider_video"
else
if test "$with_provider_ffmpegsource" = "yes"; then
if test "$with_provider_ffms" = "yes"; then
default_provider_video="ffmpegsource"
fi
fi
@ -1206,7 +1206,7 @@ AC_DEFINE_UNQUOTED([DEFAULT_PROVIDER_VIDEO], ["$default_provider_video"], [Defau
if ! test -z "$with_provider_audio"; then
default_provider_audio="$with_provider_audio"
else
if test "$with_provider_ffmpegsource" = "yes"; then
if test "$with_provider_ffms" = "yes"; then
default_provider_audio="ffmpegsource"
fi
fi