added extra check for working XML LIBS flags
authorThomas Vander Stichele <thomas@apestaart.org>
Tue, 6 Aug 2002 22:22:52 +0000 (22:22 +0000)
committerThomas Vander Stichele <thomas@apestaart.org>
Tue, 6 Aug 2002 22:22:52 +0000 (22:22 +0000)
Original commit message from CVS:
added extra check for working XML LIBS flags

configure.ac

index a9a063e..b1400d1 100644 (file)
@@ -143,6 +143,13 @@ fi
 AC_SUBST(LIBXML_PKG)
 AC_SUBST(XML_LIBS)
 AC_SUBST(XML_CFLAGS)
+dnl XML_LIBS might pull in -lz without zlib actually being on the system, so
+dnl try if you can compile with these LIBS
+if test "x$HAVE_LIBXML2" = "xyes"; then
+  AC_CHECK_LIB(xml2, xmlNewDoc, [],
+               [AC_MSG_ERROR([You might be missing zlib development stuff])],
+               $XML_LIBS)
+fi
 
 dnl popt checks
 GST_CHECK_LIBHEADER(POPT, popt, poptStrippedArgv,, popt.h, POPT_LIBS="-lpopt",