diff --git a/configure.ac b/configure.ac index 85b19e07..7be5d8f3 100644 --- a/configure.ac +++ b/configure.ac @@ -87,9 +87,6 @@ fi AC_PATH_PROG(XSLTPROC, xsltproc) AM_CONDITIONAL([HAVE_XSLTPROC], [test "x$XSLTPROC" != "x"]) -AC_PATH_PROG(XMLLINT, xmllint) -AM_CONDITIONAL([HAVE_XMLLINT], [test "x$XMLLINT" != "x"]) - AC_MSG_CHECKING([for docbook manpages stylesheet]) MANPAGES_STYLESHEET=http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl AC_PATH_PROGS_FEATURE_CHECK([XSLTPROC_TMP], [xsltproc], diff --git a/protocol/Makefile.am b/protocol/Makefile.am index e8b6290e..9dca3247 100644 --- a/protocol/Makefile.am +++ b/protocol/Makefile.am @@ -1,14 +1 @@ dist_pkgdata_DATA = wayland.xml wayland.dtd - -if HAVE_XMLLINT -.PHONY: validate - -.%.xml.valid: %.xml - $(AM_V_GEN)$(XMLLINT) --noout --dtdvalid $(srcdir)/wayland.dtd $^ > $@ - -validate: .wayland.xml.valid - -all-local: validate - -CLEANFILES = .wayland.xml.valid -endif