forked from AuroraMiddleware/gtk
Suppress xsltproc and xmlcatalog checks if enable_man=no. (#134162, Julio
Sat Feb 14 00:00:52 2004 Matthias Clasen <maclas@gmx.de> * configure.in: Suppress xsltproc and xmlcatalog checks if enable_man=no. (#134162, Julio M. Merino Vidal)
This commit is contained in:
parent
4d1bee0617
commit
a9ec2fba19
@ -1,3 +1,8 @@
|
|||||||
|
Sat Feb 14 00:00:52 2004 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
|
* configure.in: Suppress xsltproc and xmlcatalog checks
|
||||||
|
if enable_man=no. (#134162, Julio M. Merino Vidal)
|
||||||
|
|
||||||
Fri Feb 13 23:54:48 2004 Matthias Clasen <maclas@gmx.de>
|
Fri Feb 13 23:54:48 2004 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
* configure.in: Remove checks for sgml2html. It was once
|
* configure.in: Remove checks for sgml2html. It was once
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
Sat Feb 14 00:00:52 2004 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
|
* configure.in: Suppress xsltproc and xmlcatalog checks
|
||||||
|
if enable_man=no. (#134162, Julio M. Merino Vidal)
|
||||||
|
|
||||||
Fri Feb 13 23:54:48 2004 Matthias Clasen <maclas@gmx.de>
|
Fri Feb 13 23:54:48 2004 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
* configure.in: Remove checks for sgml2html. It was once
|
* configure.in: Remove checks for sgml2html. It was once
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
Sat Feb 14 00:00:52 2004 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
|
* configure.in: Suppress xsltproc and xmlcatalog checks
|
||||||
|
if enable_man=no. (#134162, Julio M. Merino Vidal)
|
||||||
|
|
||||||
Fri Feb 13 23:54:48 2004 Matthias Clasen <maclas@gmx.de>
|
Fri Feb 13 23:54:48 2004 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
* configure.in: Remove checks for sgml2html. It was once
|
* configure.in: Remove checks for sgml2html. It was once
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
Sat Feb 14 00:00:52 2004 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
|
* configure.in: Suppress xsltproc and xmlcatalog checks
|
||||||
|
if enable_man=no. (#134162, Julio M. Merino Vidal)
|
||||||
|
|
||||||
Fri Feb 13 23:54:48 2004 Matthias Clasen <maclas@gmx.de>
|
Fri Feb 13 23:54:48 2004 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
* configure.in: Remove checks for sgml2html. It was once
|
* configure.in: Remove checks for sgml2html. It was once
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
Sat Feb 14 00:00:52 2004 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
|
* configure.in: Suppress xsltproc and xmlcatalog checks
|
||||||
|
if enable_man=no. (#134162, Julio M. Merino Vidal)
|
||||||
|
|
||||||
Fri Feb 13 23:54:48 2004 Matthias Clasen <maclas@gmx.de>
|
Fri Feb 13 23:54:48 2004 Matthias Clasen <maclas@gmx.de>
|
||||||
|
|
||||||
* configure.in: Remove checks for sgml2html. It was once
|
* configure.in: Remove checks for sgml2html. It was once
|
||||||
|
25
configure.in
25
configure.in
@ -1442,19 +1442,22 @@ AC_ARG_ENABLE(man,
|
|||||||
[regenerate man pages from Docbook [default=no]])],enable_man=yes,
|
[regenerate man pages from Docbook [default=no]])],enable_man=yes,
|
||||||
enable_man=no)
|
enable_man=no)
|
||||||
|
|
||||||
dnl
|
if test "${enable_man}" != no; then
|
||||||
dnl Check for xsltproc
|
dnl
|
||||||
dnl
|
dnl Check for xsltproc
|
||||||
AC_PATH_PROG([XSLTPROC], [xsltproc])
|
dnl
|
||||||
if test -z "$XSLTPROC"; then
|
AC_PATH_PROG([XSLTPROC], [xsltproc])
|
||||||
enable_man=no
|
if test -z "$XSLTPROC"; then
|
||||||
|
enable_man=no
|
||||||
|
fi
|
||||||
|
|
||||||
|
dnl check for DocBook DTD and stylesheets in the local catalog.
|
||||||
|
JH_CHECK_XML_CATALOG([-//OASIS//DTD DocBook XML V4.1.2//EN],
|
||||||
|
[DocBook XML DTD V4.1.2],,enable_man=no)
|
||||||
|
JH_CHECK_XML_CATALOG([http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl],
|
||||||
|
[DocBook XSL Stylesheets],,enable_man=no)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
dnl check for DocBook DTD and stylesheets in the local catalog.
|
|
||||||
JH_CHECK_XML_CATALOG([-//OASIS//DTD DocBook XML V4.1.2//EN],
|
|
||||||
[DocBook XML DTD V4.1.2],,enable_man=no)
|
|
||||||
JH_CHECK_XML_CATALOG([http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl],
|
|
||||||
[DocBook XSL Stylesheets],,enable_man=no)
|
|
||||||
AM_CONDITIONAL(ENABLE_MAN, test x$enable_man != xno)
|
AM_CONDITIONAL(ENABLE_MAN, test x$enable_man != xno)
|
||||||
|
|
||||||
##################################################
|
##################################################
|
||||||
|
Loading…
Reference in New Issue
Block a user