It seems like a build dependency on xsltproc was added but not checked
for in the build system. I have a patch (attached) to fix this.

Also, the schemas.xslt file does not seem to be copied into the build
dir so the build fails. I have not been able to figure this one out
yet.

--
Travis Watkins
http://www.realistanew.com
diff --git a/configure.ac b/configure.ac
index 7bdea4f..716d3fd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -122,6 +122,11 @@ AC_MSG_RESULT($GL_LIBS)
 AC_SUBST(GL_CFLAGS)
 AC_SUBST(GL_LIBS)
 
+AC_CHECK_PROGS(XSLTPROC, xsltproc)
+if test -z "$XSLTPROC"; then
+  AC_MSG_ERROR([Couldn't find xsltproc])
+fi
+
 AC_ARG_ENABLE(gconf,
   [  --disable-gconf         Disable gconf plugin],
   [use_gconf=$enableval], [use_gconf=yes])
_______________________________________________
compiz mailing list
compiz@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/compiz

Reply via email to