From 77c5262da316214049d5141a7274c05f3a7520ba Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Thu, 18 Feb 2021 12:57:02 +0100 Subject: [PATCH] build system: require libEBML v1.4.2 --- NEWS.md | 3 ++- README.md | 4 ++-- ac/matroska.m4 | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/NEWS.md b/NEWS.md index b66a557f1..f1bbc9683 100644 --- a/NEWS.md +++ b/NEWS.md @@ -58,7 +58,8 @@ ## Build system changes -* libMatroska v1.6.3 is now required. +* libEBML v1.4.2 and libMatroska v1.6.3 are now required. The optional, + bundled copies of both libraries have been updated to those versions. # Version 53.0.0 "Fool's Gold" 2021-01-30 diff --git a/README.md b/README.md index ebbdc82b8..ea48aeacc 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,7 @@ These libraries are: - [JPCRE2](https://github.com/jpcre2/jpcre2/) — C++ wrapper for the PCRE2 library. Version 10.32.1 or newer is required. -- [libEBML v1.4.1](http://dl.matroska.org/downloads/libebml/) or later +- [libEBML v1.4.2](http://dl.matroska.org/downloads/libebml/) or later and [libMatroska v1.6.3](http://dl.matroska.org/downloads/libmatroska/) or later for low-level access to Matroska files. Instructions on how to compile them are a bit further down in this file. @@ -183,7 +183,7 @@ This is optional as MKVToolNix comes with its own set of the libraries. It will use them if no version is found on the system. Start by either downloading releases of [libEBML -v1.4.1](http://dl.matroska.org/downloads/libebml/) and [libMatroska +v1.4.2](http://dl.matroska.org/downloads/libebml/) and [libMatroska v1.6.3](http://dl.matroska.org/downloads/libmatroska/) or by getting fresh copies from their git repositories: diff --git a/ac/matroska.m4 b/ac/matroska.m4 index 348dfc17a..e4bb9473c 100644 --- a/ac/matroska.m4 +++ b/ac/matroska.m4 @@ -3,7 +3,7 @@ dnl Test for libEBML and libMatroska, and define MATROSKA_CFLAGS and MATROSKA_LI dnl EBML_MATROSKA_INTERNAL=no -PKG_CHECK_MODULES([EBML],[libebml >= 1.4.1],[],[EBML_MATROSKA_INTERNAL=yes]) +PKG_CHECK_MODULES([EBML],[libebml >= 1.4.2],[],[EBML_MATROSKA_INTERNAL=yes]) PKG_CHECK_MODULES([MATROSKA],[libmatroska >= 1.6.3],[],[EBML_MATROSKA_INTERNAL=yes]) if test x"$EBML_MATROSKA_INTERNAL" = xyes; then