Commit f749bd83 by Alan Modra Committed by Alan Modra

* configure.in: Cope with missing makeinfo.

From-SVN: r46767
parent e9818db2
2001-11-03 Alan Modra <amodra@bigpond.net.au>
* configure.in: Cope with missing makeinfo.
2001-10-22 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 2001-10-22 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* hex.c (hex_init): Provide empty stub. * hex.c (hex_init): Provide empty stub.
......
...@@ -52,15 +52,20 @@ AC_SUBST(NOTMAINT)dnl ...@@ -52,15 +52,20 @@ AC_SUBST(NOTMAINT)dnl
# Do we have a single-tree copy of texinfo? Even if we do, we can't # Do we have a single-tree copy of texinfo? Even if we do, we can't
# rely on it - libiberty is built before texinfo. # rely on it - libiberty is built before texinfo.
AC_CHECK_PROG(MAKEINFO, makeinfo, makeinfo, ) AC_CHECK_PROG(MAKEINFO, makeinfo, makeinfo, )
BUILD_INFO=info if test "x$MAKEINFO" = "x"; then
case x"`$MAKEINFO --version | grep 'GNU texinfo'`" in MAKEINFO="@echo makeinfo missing; true"
x*\ [[1-3]].* )
MAKEINFO="@echo $MAKEINFO is too old, 4.0 or newer required ;true"
BUILD_INFO= BUILD_INFO=
AC_MSG_WARN([ else
BUILD_INFO=info
case x"`$MAKEINFO --version | grep 'GNU texinfo'`" in
x*\ [[1-3]].* )
MAKEINFO="@echo $MAKEINFO is too old, 4.0 or newer required; true"
BUILD_INFO=
AC_MSG_WARN([
*** Makeinfo is too old. Info documentation will not be built.]) *** Makeinfo is too old. Info documentation will not be built.])
;; ;;
esac esac
fi
AC_SUBST(MAKEINFO) AC_SUBST(MAKEINFO)
AC_SUBST(BUILD_INFO) AC_SUBST(BUILD_INFO)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment