# HG changeset patch # User Glenn Morris # Date 1187975370 0 # Node ID 28d469c7ec2a4b0efcb1033cc7f898552e5c0041 # Parent 5cd2a05a972c97658c89f21198a8278c4f523ad4 (makeinfo): Reduce requirement to 4.6. diff -r 5cd2a05a972c -r 28d469c7ec2a configure.in --- a/configure.in Fri Aug 24 16:07:07 2007 +0000 +++ b/configure.in Fri Aug 24 17:09:30 2007 +0000 @@ -1344,17 +1344,17 @@ AC_PATH_PROG(GZIP_PROG, gzip) -## Need makeinfo >= 4.8 (?) to build the manuals. +## Need makeinfo >= 4.6 (?) to build the manuals. AC_PATH_PROG(MAKEINFO, makeinfo, no) dnl By this stage, configure has already checked for egrep and set EGREP, dnl or exited with an error if no egrep was found. if test "$MAKEINFO" != "no" && \ - test x"`$MAKEINFO --version 2> /dev/null | $EGREP 'texinfo[[^0-9]]*([[5-9]]|4\.[[8-9]])'`" = x; then + test x"`$MAKEINFO --version 2> /dev/null | $EGREP 'texinfo[[^0-9]]*([[5-9]]|4\.[[6-9]])'`" = x; then MAKEINFO=no fi if test "$MAKEINFO" = "no"; then - AC_MSG_ERROR( [makeinfo >= 4.8 is required] ) + AC_MSG_ERROR( [makeinfo >= 4.6 is required] ) fi