From 6fa90873ccc8006e479061afdd0edfbfdadf17ec Mon Sep 17 00:00:00 2001 From: Uoti Urpala Date: Tue, 9 Dec 2008 04:28:17 +0200 Subject: [PATCH] configure: Update required x264 version configure accepted old versions which then caused a build failure later. Update required version number from 59 to 65. --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index a8bc899776..d3235a843e 100755 --- a/configure +++ b/configure @@ -6799,7 +6799,7 @@ if test "$_x264" = auto ; then cat > $TMPC << EOF #include #include -#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; } -- 2.11.4.GIT