From b6bf91743f74cfcae577ab24a666fc3c0ce1f8d1 Mon Sep 17 00:00:00 2001 From: Niels Martin Hansen Date: Sat, 20 Aug 2011 18:56:30 +0000 Subject: [PATCH] Print default audio/video providers properly at the end of configure. Originally committed to SVN as r5550. --- aegisub/configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aegisub/configure.in b/aegisub/configure.in index 027cb1cae..4b2249477 100644 --- a/aegisub/configure.in +++ b/aegisub/configure.in @@ -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