Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 1 | From 9beadcdfca9198548f06bf18f3f26e1d11542e53 Mon Sep 17 00:00:00 2001 |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 2 | From: Hongxu Jia <hongxu.jia@windriver.com> |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 3 | Date: Tue, 31 Jul 2018 16:53:04 +0800 |
| 4 | Subject: [PATCH 2/4] configure.ac: remove prog test of xmlto and asciidoc |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 5 | |
| 6 | The prog of xmlto and asciidoc were used to generate documents, |
| 7 | and since the doc module has already been disabled, so we should |
| 8 | remove the prog test. |
| 9 | |
| 10 | Upstream-Status: Inappropriate workaround |
| 11 | |
| 12 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> |
| 13 | --- |
| 14 | configure.ac | 18 ------------------ |
| 15 | 1 file changed, 18 deletions(-) |
| 16 | |
| 17 | diff --git a/configure.ac b/configure.ac |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 18 | index feafc28..aceccf4 100644 |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 19 | --- a/configure.ac |
| 20 | +++ b/configure.ac |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 21 | @@ -56,24 +56,6 @@ IT_PROG_INTLTOOL([0.35.0]) |
| 22 | |
| 23 | dnl ****** END **************************************** |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 24 | |
| 25 | -AC_PATH_PROG([ASCIIDOC], [asciidoc], [no]) |
| 26 | -[if test "$ASCIIDOC" = "no"] |
| 27 | -[then] |
| 28 | - [echo "The asciidoc program was not found in the search path. Please ensure"] |
| 29 | - [echo "that it is installed and its directory is included in the search path."] |
| 30 | - [echo "Then run configure again before attempting to build libreport."] |
| 31 | - [exit 1] |
| 32 | -[fi] |
| 33 | - |
| 34 | -AC_PATH_PROG([XMLTO], [xmlto], [no]) |
| 35 | -[if test "$XMLTO" = "no"] |
| 36 | -[then] |
| 37 | - [echo "The xmlto program was not found in the search path. Please ensure"] |
| 38 | - [echo "that it is installed and its directory is included in the search path."] |
| 39 | - [echo "Then run configure again before attempting to build libreport."] |
| 40 | - [exit 1] |
| 41 | -[fi] |
| 42 | - |
| 43 | AC_ARG_WITH(bugzilla, |
| 44 | AS_HELP_STRING([--with-bugzilla],[use Bugzilla plugin (default is YES)]), |
| 45 | LIBREPORT_PARSE_WITH([bugzilla])) |
| 46 | -- |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 47 | 2.7.4 |
Brad Bishop | d7bf8c1 | 2018-02-25 22:55:05 -0500 | [diff] [blame] | 48 | |