From cdec5d0d390d8f77230a5cb6b8872e7bf7e92ea1 Mon Sep 17 00:00:00 2001 From: Karel Klic Date: Mon, 2 May 2011 17:29:28 +0200 Subject: Asciidoc manpage support; abrt-action-mailx manpage --- configure.ac | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index be36b3f9..9dbf47f1 100644 --- a/configure.ac +++ b/configure.ac @@ -41,6 +41,24 @@ if test -z "$PYTHON"; then exit 1 fi +AC_PATH_PROG([ASCIIDOC], [asciidoc], [no]) +[if test "$ASCIIDOC" = "no"] +[then] + [echo "The asciidoc program was not found in the search path. Please ensure"] + [echo "that it is installed and its directory is included in the search path."] + [echo "Then run configure again before attempting to build ABRT."] + [exit 1] +[fi] + +AC_PATH_PROG([XMLTO], [xmlto], [no]) +[if test "$XMLTO" = "no"] +[then] + [echo "The xmlto program was not found in the search path. Please ensure"] + [echo "that it is installed and its directory is included in the search path."] + [echo "Then run configure again before attempting to build ABRT."] + [exit 1] +[fi] + PKG_CHECK_MODULES([GTK], [gtk+-2.0]) PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.21]) PKG_CHECK_MODULES([DBUS], [dbus-1]) -- cgit