diff options
Diffstat (limited to 'docs/docbook')
-rwxr-xr-x | docs/docbook/configure | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/docs/docbook/configure b/docs/docbook/configure index 609c17ed87..8680e5b5ab 100755 --- a/docs/docbook/configure +++ b/docs/docbook/configure @@ -557,10 +557,13 @@ else echo "$ac_t""no" 1>&6 fi +if test "x$JW" = x; then + { echo "configure: error: "jw is required"" 1>&2; exit 1; } +fi # Extract the first word of "perl", so it can be a program name with args. set dummy perl; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:564: checking for $ac_word" >&5 +echo "configure:567: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_PERL'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -592,10 +595,13 @@ else echo "$ac_t""no" 1>&6 fi +if test "x$PERL" = x; then + { echo "configure: error: "perl is required"" 1>&2; exit 1; } +fi # Extract the first word of "htmldoc", so it can be a program name with args. set dummy htmldoc; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:599: checking for $ac_word" >&5 +echo "configure:605: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_HTMLDOC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -627,6 +633,9 @@ else echo "$ac_t""no" 1>&6 fi +if test "x$HTMLDOC" = x; then + { echo "configure: error: "htmldoc is required"" 1>&2; exit 1; } +fi DOC_BUILD_DATE=`date '+%d-%m-%Y'` |