On Thu, Aug 15, 2013 at 09:32:34PM +0100, Jerome Leclanche wrote:
> Shouldn't --disable-man skip compilation altogether though?

Hm, a better name for that option would be --enable-regenerate-man, so
it only controls whether the man pages are regenerated. Man pages are
unconditional install dependencies. They are included in tarball
releases, but if you check out from git, they will be missing.

> 
> [snipped identical output ...]
> checking for xsltproc... /usr/bin/xsltproc
> checking for XML catalog (/etc/xml/catalog)... found
> checking for xmlcatalog... /usr/bin/xmlcatalog
> checking for DocBook XML DTD V4.1.2 in XML catalog... found
> checking for DocBook XSL Stylesheets >= 1.70.1 in XML catalog... found

This looks good. Since all three checks are passed, the man pages should
be generated. Since this is not the case, could you run it with the
attached patch?


Thanks,
Henry
>From 1a245be05c85b63ab05f3c3aa8ede2ad8debe361 Mon Sep 17 00:00:00 2001
From: Henry Gebhardt <[email protected]>
Date: Thu, 15 Aug 2013 23:53:15 -0400
Subject: [PATCH] configure.ac: Print more information whether --enable-man
 gets disabled or not

---
 configure.ac | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/configure.ac b/configure.ac
index bd3a990..2c4cf48 100644
--- a/configure.ac
+++ b/configure.ac
@@ -372,17 +372,21 @@ AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Gettext package.])
 
 AM_GLIB_GNU_GETTEXT
 
+echo enable_man=$enable_man
 if test x"$enable_man" = x"yes"; then
 	AC_PATH_PROG([XSLTPROC], [xsltproc])
 	if test -z "$XSLTPROC"; then
 		enable_man=no
 	fi
+	echo "enable_man=$enable_man, XSLTPROC='$XSLTPROC'"
 
 	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)
+	echo enable_man=$enable_man
 	JH_CHECK_XML_CATALOG([http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl],
 		[DocBook XSL Stylesheets >= 1.70.1], [], enable_man=no)
+	echo enable_man=$enable_man
 fi
 
 AM_CONDITIONAL(ENABLE_REGENERATE_MAN, test "x$enable_man" != "xno")
-- 
1.8.3.2

------------------------------------------------------------------------------
Get 100% visibility into Java/.NET code with AppDynamics Lite!
It's a free troubleshooting tool designed for production.
Get down to code-level detail for bottlenecks, with <2% overhead. 
Download for free and get started troubleshooting in minutes. 
http://pubads.g.doubleclick.net/gampad/clk?id=48897031&iu=/4140/ostg.clktrk
_______________________________________________
Lxde-list mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/lxde-list

Reply via email to