[Pkg-shadow-commits] r2015 - upstream/trunk

nekral-guest at alioth.debian.org nekral-guest at alioth.debian.org
Sun May 25 20:30:51 UTC 2008


Author: nekral-guest
Date: 2008-05-25 20:30:45 +0000 (Sun, 25 May 2008)
New Revision: 2015

Modified:
   upstream/trunk/ChangeLog
   upstream/trunk/configure.in
Log:
Allow --disable-man and --enable-man=no.


Modified: upstream/trunk/ChangeLog
===================================================================
--- upstream/trunk/ChangeLog	2008-05-25 13:01:49 UTC (rev 2014)
+++ upstream/trunk/ChangeLog	2008-05-25 20:30:45 UTC (rev 2015)
@@ -1,5 +1,9 @@
 2008-05-25  Nicolas François  <nicolas.francois at centraliens.net>
 
+	* configure.in: Allow --disable-man and --enable-man=no.
+
+2008-05-25  Nicolas François  <nicolas.francois at centraliens.net>
+
 	Prepare the 4.1.2 release
 	* NEWS: set the release date.
 	* man/po/*.po, po/*.po: Updated PO files.

Modified: upstream/trunk/configure.in
===================================================================
--- upstream/trunk/configure.in	2008-05-25 13:01:49 UTC (rev 2014)
+++ upstream/trunk/configure.in	2008-05-25 20:30:45 UTC (rev 2015)
@@ -212,8 +212,8 @@
 AC_ARG_ENABLE(man,
 	[AC_HELP_STRING([--enable-man],
 		[regenerate roff man pages from Docbook @<:@default=no@:>@])],
-	[enable_man=yes],
-        [enable_man=no]
+	[enable_man="${enableval}"],
+	[enable_man=no]
 )
 
 AC_ARG_WITH(audit, 
@@ -268,7 +268,7 @@
 	JH_CHECK_XML_CATALOG([http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl],
 		[DocBook XSL Stylesheets >= 1.70.1], [], enable_man=no)
 fi
-AM_CONDITIONAL(ENABLE_REGENERATE_MAN, test x$enable_man != xno)
+AM_CONDITIONAL(ENABLE_REGENERATE_MAN, test "x$enable_man" != "xno")
 
 AC_SUBST(LIBCRYPT)
 AC_CHECK_LIB(crypt, crypt, [LIBCRYPT=-lcrypt],




More information about the Pkg-shadow-commits mailing list