mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 03:35:21 +00:00
added check for version 1.8.1 or better of libxml
Original commit message from CVS: added check for version 1.8.1 or better of libxml
This commit is contained in:
parent
1e20129686
commit
5034ebd995
1 changed files with 2 additions and 0 deletions
|
@ -178,6 +178,8 @@ AC_PATH_PROG(XML_CONFIG, xml-config, no)
|
||||||
if test x$XML_CONFIG = xno; then
|
if test x$XML_CONFIG = xno; then
|
||||||
AC_MSG_ERROR(Couldn't find xml-config)
|
AC_MSG_ERROR(Couldn't find xml-config)
|
||||||
fi
|
fi
|
||||||
|
AC_CHECK_LIB(xml, xmlDocGetRootElement, ,
|
||||||
|
[ AC_MSG_ERROR(Need version 1.8.1 or better of libxml) ])
|
||||||
XML_LIBS=`xml-config --libs`
|
XML_LIBS=`xml-config --libs`
|
||||||
XML_CFLAGS=`xml-config --cflags`
|
XML_CFLAGS=`xml-config --cflags`
|
||||||
AC_SUBST(XML_LIBS)
|
AC_SUBST(XML_LIBS)
|
||||||
|
|
Loading…
Reference in a new issue