From: Alexander Traud Date: Tue, 29 Sep 2020 08:30:56 +0000 (+0200) Subject: [mod_av] Update error message X-Git-Tag: v1.10.6^2~127^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=828811501ce1ed4f47be6b46ad34807b1c9079f2;p=thirdparty%2Ffreeswitch.git [mod_av] Update error message Five years ago, commit b29174e added the scale/conversion library of FFmpeg. However, that library is not part of libavformat-dev and added an additional requirement. That was not reflected in the error message, when FFmpeg libraries are missing. --- diff --git a/src/mod/applications/mod_av/Makefile.am b/src/mod/applications/mod_av/Makefile.am index e697d9ec93..ebf4c93929 100644 --- a/src/mod/applications/mod_av/Makefile.am +++ b/src/mod/applications/mod_av/Makefile.am @@ -36,5 +36,5 @@ else install: error all: error error: - $(error You must install libavformat-dev to build mod_av) + $(error You must install libavformat-dev and libswscale-dev to build mod_av) endif