Commit 06ea76d6 authored by Christophe Mutricy's avatar Christophe Mutricy

Backport [18170]. Use libebml_pic is available

parent ee3e3ed4
...@@ -2349,10 +2349,15 @@ if test "${enable_mkv}" != "no" -a "${CXX}" != ""; then ...@@ -2349,10 +2349,15 @@ if test "${enable_mkv}" != "no" -a "${CXX}" != ""; then
if test "${SYS}" = "darwin"; then if test "${SYS}" = "darwin"; then
VLC_ADD_CXXFLAGS([mkv],[-O1]) VLC_ADD_CXXFLAGS([mkv],[-O1])
fi fi
AC_CHECK_LIB(ebml, main, [ AC_CHECK_LIB(ebml_pic, main, [
VLC_ADD_PLUGINS([mkv]) VLC_ADD_PLUGINS([mkv])
VLC_ADD_LDFLAGS([mkv],[-lmatroska -lebml]) VLC_ADD_LDFLAGS([mkv],[-lmatroska -lebml_pic])
]) ],
AC_CHECK_LIB(ebml, main, [
VLC_ADD_PLUGINS([mkv])
VLC_ADD_LDFLAGS([mkv],[-lmatroska -lebml])
])
)
], ],
[AC_MSG_RESULT([no]) [AC_MSG_RESULT([no])
AC_MSG_ERROR([Your libmatroska is too old: you may get a more recent one from http://dl.matroska.org/downloads/libmatroska/. Alternatively you can use --disable-mkv to disable the matroska plugin.]) AC_MSG_ERROR([Your libmatroska is too old: you may get a more recent one from http://dl.matroska.org/downloads/libmatroska/. Alternatively you can use --disable-mkv to disable the matroska plugin.])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment