require libEBML 1.4.0, libMatroska 1.6.0

This commit is contained in:
Moritz Bunkus 2020-06-22 12:47:13 +02:00
parent 0a1da6ad1e
commit 28608963d3
No known key found for this signature in database
GPG Key ID: 74AF00ADF2E32C85
2 changed files with 6 additions and 2 deletions

View File

@ -54,6 +54,10 @@
greatly speeds up processing files from which only small portions must be
read. Part of the fix of #2824.
## Build system changes
* libEBML v1.4.0 and libMatroska v1.6.0 are now required.
# Version 47.0.0 "Black Flag" 2020-05-30

View File

@ -3,8 +3,8 @@ dnl Test for libEBML and libMatroska, and define MATROSKA_CFLAGS and MATROSKA_LI
dnl
EBML_MATROSKA_INTERNAL=no
PKG_CHECK_MODULES([EBML],[libebml >= 1.3.7],[],[EBML_MATROSKA_INTERNAL=yes])
PKG_CHECK_MODULES([MATROSKA],[libmatroska >= 1.5.0],[],[EBML_MATROSKA_INTERNAL=yes])
PKG_CHECK_MODULES([EBML],[libebml >= 1.4.0],[],[EBML_MATROSKA_INTERNAL=yes])
PKG_CHECK_MODULES([MATROSKA],[libmatroska >= 1.6.0],[],[EBML_MATROSKA_INTERNAL=yes])
if test x"$EBML_MATROSKA_INTERNAL" = xyes; then
if ! test -f lib/libebml/ebml/EbmlTypes.h ; then