goba Fri Feb 8 06:42:36 2002 EDT
Modified files:
/phpdoc configure.in
Log:
Add temporary manual xslt option, as adviced by Jirka.
Quick fix till we can manage to have a correct system for
XSLT on both Linux and Windows. This manual specification
is needed because cygwin test cannot understand file:///
path values, while other programs cannot understand
/cygdrive/ path vales. :((
Index: phpdoc/configure.in
diff -u phpdoc/configure.in:1.132 phpdoc/configure.in:1.133
--- phpdoc/configure.in:1.132 Thu Feb 7 08:23:38 2002
+++ phpdoc/configure.in Fri Feb 8 06:42:35 2002
@@ -1,4 +1,4 @@
-dnl $Id: configure.in,v 1.132 2002/02/07 13:23:38 hholzgra Exp $
+dnl $Id: configure.in,v 1.133 2002/02/08 11:42:35 goba Exp $
dnl autoconf initialisation
AC_INIT()
@@ -320,6 +320,29 @@
AC_SUBST(DOCBOOKXSL_HTML)
AC_SUBST(DOCBOOKXSL_HTMLHELP)
+AC_SUBST(DOCBOOKXSL_PRINT)
+
+dnl }}}
+
+dnl {{{ manual XSLT stylesheets option [temp]
+
+AC_MSG_CHECKING(for manually specified docbook.xsl)
+
+AC_ARG_WITH(mxsl,
+[ --with-mxsl=[DIR] Look for XSL stylesheets in the manually specified DIR],
+[
+ DOCBOOKXSL_BIGHTML=$withval/html/docbook.xsl
+ DOCBOOKXSL_HTML=$withval/html/chunk.xsl
+ DOCBOOKXSL_HTMLHELP=$withval/htmlhelp/htmlhelp.xsl
+ DOCBOOKXSL_PRINT=$withval/fo/docbook.xsl
+ AC_MSG_RESULT(in $withval)
+])
+if test -z "$DOCBOOKXSL_BIGHTML"; then
+ AC_MSG_RESULT(not found)
+fi
+AC_SUBST(DOCBOOKXSL_BIGHTML)
+AC_SUBST(DOCBOOKXSL_HTML)
+AC_SUBST(DOCBOOKXSL_HTMLHELP)
AC_SUBST(DOCBOOKXSL_PRINT)
dnl }}}