~ubuntu-branches/ubuntu/quantal/pitivi/quantal

« back to all changes in this revision

Viewing changes to common/m4/gst-libxml2.m4

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2008-12-12 10:22:29 UTC
  • mfrom: (1.1.6 upstream)
  • mto: (3.2.2 jaunty) (1.2.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 6.
  • Revision ID: james.westby@ubuntu.com-20081212102229-7c3etvaoy9ys0x28
Tags: upstream-0.11.3
Import upstream version 0.11.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
  dnl check for libxml2
13
13
  PKG_CHECK_MODULES(XML, libxml-2.0 >= $LIBXML2_REQ, 
14
 
                    HAVE_LIBXML2=yes, HAVE_LIBXML2=no)
 
14
                    HAVE_LIBXML2=yes, [
 
15
                      AC_MSG_RESULT(no)
 
16
                      HAVE_LIBXML2=no
 
17
                    ])
15
18
  if test "x$HAVE_LIBXML2" = "xyes"; then
16
19
    AC_DEFINE(HAVE_LIBXML2, 1, [Define if libxml2 is available])
17
20
  else