0002-configure.ac-remove-prog-test-of-xmlto-and-asciidoc.patch 1.6 KB

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