From 2b042d6eed8099bcce93209c8a306724658a142e Mon Sep 17 00:00:00 2001 From: bnnm Date: Tue, 10 Aug 2021 23:52:53 +0200 Subject: [PATCH] autotools: enable ffmpeg as should now build ok --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index b43e5489..e7d84e85 100644 --- a/configure.ac +++ b/configure.ac @@ -42,9 +42,9 @@ PKG_CHECK_MODULES(SPEEX, [speex], have_libspeex=yes, AM_CONDITIONAL(HAVE_LIBSPEEX, test "$have_libspeex" = yes) have_ffmpeg=no -#PKG_CHECK_MODULES(FFMPEG, [libavformat libavcodec libavutil libswresample], have_ffmpeg=yes, -# [AC_MSG_WARN([Cannot find ffmpeg - will not enable FFmpeg formats])] -#) +PKG_CHECK_MODULES(FFMPEG, [libavformat libavcodec libavutil libswresample], have_ffmpeg=yes, + [AC_MSG_WARN([Cannot find ffmpeg - will not enable FFmpeg formats])] +) AM_CONDITIONAL(HAVE_FFMPEG, test "$have_ffmpeg" = yes) have_audacious=no