0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00

make sure opt.h is present when detecting libavformat

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@19603 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
nicodvb 2006-08-30 22:25:26 +00:00
parent d30af62472
commit eae1896f51

1
configure vendored
View File

@ -6159,6 +6159,7 @@ if test "$_libavformat_so" = auto ; then
_libavformat_so=no
cat > $TMPC <<EOF
#include <ffmpeg/avformat.h>
#include <ffmpeg/opt.h>
int main(void) { av_alloc_format_context(); return 0; }
EOF
if pkg-config --exists libavformat ; then