diff options
author | Joseph Myers <jsm28@cam.ac.uk> | 2002-03-05 00:39:06 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2002-03-05 00:39:06 +0000 |
commit | 8e97db8fe9fab716f3e3015046883560f22430ea (patch) | |
tree | bc85eb415ea4129522eef0850918e654764a2258 /gcc | |
parent | 06487868bb4d2a0b2d1b9ad1fd046d2c38857288 (diff) | |
download | gcc-8e97db8fe9fab716f3e3015046883560f22430ea.zip gcc-8e97db8fe9fab716f3e3015046883560f22430ea.tar.gz gcc-8e97db8fe9fab716f3e3015046883560f22430ea.tar.bz2 |
configure.in: Increase required makeinfo version to 4.1.
* configure.in: Increase required makeinfo version to 4.1.
* configure: Regenerate.
From-SVN: r50294
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rwxr-xr-x | gcc/configure | 4 | ||||
-rw-r--r-- | gcc/configure.in | 2 |
3 files changed, 8 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b236ecc..4449be6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2002-03-05 Joseph S. Myers <jsm28@cam.ac.uk> + + * configure.in: Increase required makeinfo version to 4.1. + * configure: Regenerate. + 2002-03-04 Geoffrey Keating <geoffk@redhat.com> * .cvsignore: Remove *.info* and genrtl*; these files are generated diff --git a/gcc/configure b/gcc/configure index b6bf777..5eada2f 100755 --- a/gcc/configure +++ b/gcc/configure @@ -2085,7 +2085,7 @@ EOF fi # Find some useful tools -for ac_prog in gawk mawk nawk awk +for ac_prog in mawk gawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 @@ -3105,7 +3105,7 @@ else echo "configure:3106: version of makeinfo is $ac_prog_version" >&5 case $ac_prog_version in '') gcc_cv_prog_makeinfo_modern=no;; - 4.*) + 4.[1-9]*) gcc_cv_prog_makeinfo_modern=yes;; *) gcc_cv_prog_makeinfo_modern=no;; esac diff --git a/gcc/configure.in b/gcc/configure.in index 6e6fb6b..580e16a 100644 --- a/gcc/configure.in +++ b/gcc/configure.in @@ -494,7 +494,7 @@ else # that we can use it. gcc_AC_CHECK_PROG_VER(MAKEINFO, makeinfo, --version, [GNU texinfo.* \([0-9][0-9.]*\)], - [4.*]) + [4.[1-9]*]) fi if test $gcc_cv_prog_makeinfo_modern = no; then |