summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2008-12-09 04:28:17 +0200
committerUoti Urpala <uau@glyph.nonexistent.invalid>2008-12-09 04:28:17 +0200
commit6fa90873ccc8006e479061afdd0edfbfdadf17ec (patch)
tree0e6f606a7dd6eaecd67602d4e3066022fc37fd40 /configure
parente948b1ae06afaff3e10df4c03a59133fc0b35105 (diff)
downloadmpv-6fa90873ccc8006e479061afdd0edfbfdadf17ec.tar.bz2
mpv-6fa90873ccc8006e479061afdd0edfbfdadf17ec.tar.xz
configure: Update required x264 version
configure accepted old versions which then caused a build failure later. Update required version number from 59 to 65.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
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 <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; }