From: Vadim Kochan <vadim4j@gmail.com>
To: netdev@vger.kernel.org
Cc: Vadim Kochan <vadim4j@gmail.com>
Subject: [PATCH iproute2] configure: Add check for the doc tools
Date: Sun, 30 Nov 2014 18:08:25 +0200 [thread overview]
Message-ID: <1417363705-560-1-git-send-email-vadim4j@gmail.com> (raw)
Added checking existence of the doc files converters.
If the XXX tool exists then HAVE_XXX:=y will be written
to the Config file. Example of the configure script output:
TC schedulers
ATM no
IPT using xtables
IPSET yes
iptables modules directory: /usr/lib/iptables
libc has setns: yes
SELinux support: no
Docs
latex: no
WARNING: no docs can be built from LaTeX files
sgml2html: yes
Signed-off-by: Vadim Kochan <vadim4j@gmail.com>
---
configure | 23 ++++++++++++++++++++++-
1 file changed, 22 insertions(+), 1 deletion(-)
diff --git a/configure b/configure
index d5170f0..c3dacdb 100755
--- a/configure
+++ b/configure
@@ -7,6 +7,24 @@ INCLUDE=${1:-"$PWD/include"}
TMPDIR=$(mktemp -d config.XXXXXX)
trap 'status=$?; rm -rf $TMPDIR; exit $status' EXIT HUP INT QUIT TERM
+check_prog()
+{
+ echo -n "$2"
+ command -v $1 >/dev/null 2>&1 && (echo "$3:=y" >> Config; echo "yes") || (echo "no"; return 1)
+}
+
+check_docs()
+{
+ if check_prog latex " latex: " HAVE_LATEX; then
+ check_prog pdflatex " pdflatex: " HAVE_PDFLATEX || echo " WARNING: no PDF docs can be built from LaTeX files"
+ check_prog sgml2latex " sgml2latex: " HAVE_SGML2LATEX || echo " WARNING: no LaTeX files can be build from SGML files"
+ else
+ echo " WARNING: no docs can be built from LaTeX files"
+ fi
+
+ check_prog sgml2html " sgml2html: " HAVE_SGML2HTML || echo " WARNING: no HTML docs can be built from SGML"
+}
+
check_toolchain()
{
: ${PKG_CONFIG:=pkg-config}
@@ -260,7 +278,7 @@ check_ipt
echo -n " IPSET "
check_ipset
-echo -n "iptables modules directory: "
+echo -n -e "\niptables modules directory: "
check_ipt_lib_dir
echo -n "libc has setns: "
@@ -268,3 +286,6 @@ check_setns
echo -n "SELinux support: "
check_selinux
+
+echo -e "\nDocs"
+check_docs
--
2.1.3
next reply other threads:[~2014-11-30 16:18 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-30 16:08 Vadim Kochan [this message]
2014-11-30 17:51 ` [PATCH iproute2] configure: Add check for the doc tools Stephen Hemminger
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1417363705-560-1-git-send-email-vadim4j@gmail.com \
--to=vadim4j@gmail.com \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).