Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
configure: print the error message when no or old libav/ffmpeg found,…
… fixes #2378
  • Loading branch information
perexg committed Oct 15, 2014
1 parent c182493 commit 39aa466
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure
Expand Up @@ -372,7 +372,7 @@ else

if $has_libav; then
enable libav
elif enabled libav; then
elif enabled_or_auto libav; then

die "libav development support not found
(use --disable-libav or --enable-libffmpeg_static)
Expand Down

2 comments on commit 39aa466

@perexg
Copy link
Contributor Author

@perexg perexg commented on 39aa466 Oct 15, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

From logs you provided to the issue, you have libav libraries v8 (check the package name for libavcodec or so), so they are no longer supported. You may try to use --enable-libffmpeg_static , but I'm not sure, if it builds on other platform than x86...

@perexg
Copy link
Contributor Author

@perexg perexg commented on 39aa466 Oct 15, 2014

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

use --disable-libav or --enable-libffmpeg_static)
((supported ffmpeg libs n1.2+))
((supported libav libs v10+))

Please sign in to comment.