[vlc-commits] configure: reject libavutil >= 55

Rémi Denis-Courmont git at videolan.org
Tue Sep 1 19:38:06 CEST 2015


vlc/vlc-2.2 | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Tue Sep  1 20:37:55 2015 +0300| [6b4032a04e6440daeb4ef6dc65ff12d681787403] | committer: Rémi Denis-Courmont

configure: reject libavutil >= 55

> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=6b4032a04e6440daeb4ef6dc65ff12d681787403
---

 configure.ac |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/configure.ac b/configure.ac
index 057b089..bed99d9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2323,9 +2323,9 @@ AC_ARG_ENABLE(avcodec,
 [  --enable-avcodec        libavcodec codec (default enabled)])
 AS_IF([test "${enable_avcodec}" != "no"], [
   PKG_CHECK_MODULES(AVCODEC,[libavcodec >= 53.34.0 libavutil >= 51.22.0], [
-    dnl PKG_CHECK_EXISTS([libavcodec < 56],, [
-    dnl   AC_MSG_ERROR([libavcodec versions 56 and later are not supported yet.])
-    dnl ])
+    PKG_CHECK_EXISTS([libavutil < 55],, [
+      AC_MSG_ERROR([libavutil versions 55 and later are not supported.])
+    ])
     VLC_SAVE_FLAGS
     CPPFLAGS="${CPPFLAGS} ${AVCODEC_CFLAGS}"
     CFLAGS="${CFLAGS} ${AVCODEC_CFLAGS}"



More information about the vlc-commits mailing list