gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnunet] branch master updated: If texi2mdoc is not found,


From: gnunet
Subject: [GNUnet-SVN] [gnunet] branch master updated: If texi2mdoc is not found, throw a warning when --enable-section7 is true
Date: Sun, 21 Oct 2018 16:33:07 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnunet.

The following commit(s) were added to refs/heads/master by this push:
     new e0785bb1b If texi2mdoc is not found, throw a warning when 
--enable-section7 is true
e0785bb1b is described below

commit e0785bb1b2af91a38d161bda7a4075338579441a
Author: Nils Gillmann <address@hidden>
AuthorDate: Sun Oct 21 14:33:57 2018 +0000

    If texi2mdoc is not found, throw a warning when --enable-section7 is true
    
    Signed-off-by: Nils Gillmann <address@hidden>
---
 configure.ac | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/configure.ac b/configure.ac
index 25ff26aa0..e9e540419 100644
--- a/configure.ac
+++ b/configure.ac
@@ -699,8 +699,15 @@ AC_ARG_ENABLE([section7],
 AC_MSG_RESULT($section7)
 if test "x$section7" = "xyes"
 then
+  if test "$texi2mdoc" = 0
+  then
+  AC_MSG_WARN([ERROR: mdoc output currently requires texi2mdoc.])
+  AC_MSG_WARN([ERROR: texi2mdoc can be obtained via your Operating System])
+  AC_MSG_WARN([ERROR: package manager or from 
https://mandoc.bsd.lv/texi2mdoc/])
+  else
   AM_CONDITIONAL([SECTION7],true)
   AC_DEFINE([SECTION7],[1],[Building section 7 mdoc output])
+  fi
 else
   AM_CONDITIONAL([SECTION7],false)
   AC_DEFINE([SECTION7],[0],[Not building section 7 mdoc output])

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]