blob: 4fdf69c73af14345986506100ed6213c640aef08 [file] [log] [blame]
Andrew Geisslerfc113ea2023-03-31 09:59:46 -05001From 276c45d0663124c9ccab0ddc8b97fb5cdc8b3867 Mon Sep 17 00:00:00 2001
Brad Bishopd7bf8c12018-02-25 22:55:05 -05002From: Hongxu Jia <hongxu.jia@windriver.com>
Brad Bishop1a4b7ee2018-12-16 17:11:34 -08003Date: Tue, 31 Jul 2018 16:53:04 +0800
Andrew Geisslerfc113ea2023-03-31 09:59:46 -05004Subject: [PATCH] configure.ac: remove prog test of xmlto and asciidoc
Brad Bishopd7bf8c12018-02-25 22:55:05 -05005
6The prog of xmlto and asciidoc were used to generate documents,
7and since the doc module has already been disabled, so we should
8remove the prog test.
9
Andrew Geissler6aa7eec2023-03-03 12:41:14 -060010Upstream-Status: Inappropriate [workaround]
Brad Bishopd7bf8c12018-02-25 22:55:05 -050011
12Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Andrew Geisslerfc113ea2023-03-31 09:59:46 -050013
14Modify to apply to v 2.17.8.
15
16Signed-off-by: Joe Slater <joe.slater@windriver.com>
Brad Bishopd7bf8c12018-02-25 22:55:05 -050017---
18 configure.ac | 18 ------------------
19 1 file changed, 18 deletions(-)
20
21diff --git a/configure.ac b/configure.ac
Andrew Geisslerfc113ea2023-03-31 09:59:46 -050022index da8cf898..17ece200 100644
Brad Bishopd7bf8c12018-02-25 22:55:05 -050023--- a/configure.ac
24+++ b/configure.ac
Andrew Geisslerfc113ea2023-03-31 09:59:46 -050025@@ -57,24 +57,6 @@ IT_PROG_INTLTOOL([0.35.0])
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080026
27 dnl ****** END ****************************************
Brad Bishopd7bf8c12018-02-25 22:55:05 -050028
29-AC_PATH_PROG([ASCIIDOC], [asciidoc], [no])
30-[if test "$ASCIIDOC" = "no"]
31-[then]
32- [echo "The asciidoc program was not found in the search path. Please ensure"]
33- [echo "that it is installed and its directory is included in the search path."]
34- [echo "Then run configure again before attempting to build libreport."]
35- [exit 1]
36-[fi]
37-
38-AC_PATH_PROG([XMLTO], [xmlto], [no])
39-[if test "$XMLTO" = "no"]
40-[then]
41- [echo "The xmlto program was not found in the search path. Please ensure"]
42- [echo "that it is installed and its directory is included in the search path."]
43- [echo "Then run configure again before attempting to build libreport."]
44- [exit 1]
45-[fi]
46-
47 AC_ARG_WITH(bugzilla,
48 AS_HELP_STRING([--with-bugzilla],[use Bugzilla plugin (default is YES)]),
Andrew Geisslerfc113ea2023-03-31 09:59:46 -050049 LIBREPORT_PARSE_WITH([bugzilla]),
Brad Bishopd7bf8c12018-02-25 22:55:05 -050050--
Andrew Geisslerfc113ea2023-03-31 09:59:46 -0500512.25.1
Brad Bishopd7bf8c12018-02-25 22:55:05 -050052