Blame SOURCES/autoconf-2.13-mawk.patch

3e6817
--- autoconf-2.13/configure.mawk	Tue Jan  5 08:28:57 1999
3e6817
+++ autoconf-2.13/configure	Sun Mar 21 16:58:01 1999
3e6817
@@ -583,7 +583,7 @@
3e6817
 done
3e6817
 test -n "$M4" || M4="m4"
3e6817
 
3e6817
-for ac_prog in mawk gawk nawk awk
3e6817
+for ac_prog in gawk mawk nawk awk
3e6817
 do
3e6817
 # Extract the first word of "$ac_prog", so it can be a program name with args.
3e6817
 set dummy $ac_prog; ac_word=$2
3e6817
--- autoconf-2.13/acspecific.m4.mawk	Tue Jan  5 08:27:52 1999
3e6817
+++ autoconf-2.13/acspecific.m4	Sun Mar 21 16:58:56 1999
3e6817
@@ -479,9 +479,9 @@
3e6817
 AC_DEFUN(AC_PROG_RANLIB,
3e6817
 [AC_CHECK_PROG(RANLIB, ranlib, ranlib, :)])
3e6817
 
3e6817
-dnl Check for mawk first since it's generally faster.
3e6817
+dnl Don't check for mawk first even if it's generally faster.
3e6817
 AC_DEFUN(AC_PROG_AWK,
3e6817
-[AC_CHECK_PROGS(AWK, mawk gawk nawk awk, )])
3e6817
+[AC_CHECK_PROGS(AWK, gawk mawk nawk awk, )])
3e6817
 
3e6817
 AC_DEFUN(AC_PROG_YACC,
3e6817
 [AC_CHECK_PROGS(YACC, 'bison -y' byacc, yacc)])
3e6817
--- autoconf-2.13/autoconf.texi.mawk	Tue Jan  5 08:28:37 1999
3e6817
+++ autoconf-2.13/autoconf.texi	Sun Mar 21 16:59:42 1999
3e6817
@@ -1535,10 +1535,10 @@
3e6817
 @defmac AC_PROG_AWK
3e6817
 @maindex PROG_AWK
3e6817
 @ovindex AWK
3e6817
-Check for @code{mawk}, @code{gawk}, @code{nawk}, and @code{awk}, in that
3e6817
+Check for @code{gawk}, @code{mawk}, @code{nawk}, and @code{awk}, in that
3e6817
 order, and set output variable @code{AWK} to the first one that it
3e6817
-finds.  It tries @code{mawk} first because that is reported to be the
3e6817
-fastest implementation.
3e6817
+finds.  It tries @code{gawk} first because that is reported to be the
3e6817
+best implementation.
3e6817
 @end defmac
3e6817
 
3e6817
 @defmac AC_PROG_CC