1 dnl call this macro with the minimum required version as an argument
2 dnl this macro sets and AC_SUBSTs XML_CFLAGS and XML_LIBS
3 dnl it also sets LIBXML_PKG, used for the pkg-config file
5 AC_DEFUN([AG_GST_LIBXML2_CHECK],
7 dnl Minimum required version of libxml2
8 dnl default to 2.4.9 if not specified
9 LIBXML2_REQ=ifelse([$1],,2.4.9,[$1])
13 PKG_CHECK_MODULES(XML, libxml-2.0 >= $LIBXML2_REQ,
14 HAVE_LIBXML2=yes, HAVE_LIBXML2=no)
15 if test "x$HAVE_LIBXML2" = "xyes"; then
16 AC_DEFINE(HAVE_LIBXML2, 1, [Define if libxml2 is available])
18 AC_MSG_ERROR([Need libxml2 for glib2 builds -- you should be able to do without it -- this needs fixing])
20 dnl this is for the .pc file
21 LIBXML_PKG=', libxml-2.0'
26 dnl XML_LIBS might pull in -lz without zlib actually being on the system, so
27 dnl try linking with these LIBS and CFLAGS
28 ac_save_CFLAGS=$CFLAGS
30 CFLAGS="$CFLAGS $XML_CFLAGS"
31 LIBS="$LIBS $XML_LIBS"
33 #include <libxml/tree.h>
38 AC_MSG_NOTICE([Test xml2 program linked]),
39 AC_MSG_ERROR([Could not link libxml2 test program. Check if you have the necessary dependencies.])
41 CFLAGS="$ac_save_CFLAGS"