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

configure: Update required x264 version

configure accepted old versions which then caused a build failure
later. Update required version number from 59 to 65.
This commit is contained in:
Uoti Urpala 2008-12-09 04:28:17 +02:00
parent e948b1ae06
commit 6fa90873cc

2
configure vendored
View File

@ -6799,7 +6799,7 @@ if test "$_x264" = auto ; then
cat > $TMPC << EOF
#include <inttypes.h>
#include <x264.h>
#if X264_BUILD < 59
#if X264_BUILD < 65
#error We do not support old versions of x264. Get the latest from SVN.
#endif
int main(void) { x264_encoder_open((void*)0); return 0; }