From 76212be904286669b79bd8ff60816e2717b774e8 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Tue, 20 Oct 2015 15:06:40 +0200 Subject: [PATCH] build system: require libebml >= 1.3.3 due to fixes for invalid memory access --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 6ae2d80..a52d116 100644 --- a/configure.ac +++ b/configure.ac @@ -9,6 +9,6 @@ AC_ARG_ENABLE([debug], AS_HELP_STRING([--enable-debug], [Add -g -DDEBUG to compile flags]), [enable_debug="$withval"], [enable_debug=no]) AM_CONDITIONAL([ENABLE_DEBUG], [test "$enable_debug" = yes]) -PKG_CHECK_MODULES([EBML],[libebml >= 1.3.1]) +PKG_CHECK_MODULES([EBML],[libebml >= 1.3.3]) AC_CONFIG_FILES([Makefile libmatroska.pc]) AC_OUTPUT