Received: from pacific-carrier-annex.mit.edu (PACIFIC-CARRIER-ANNEX.MIT.EDU [18.7.21.83]) by krbdev.mit.edu (8.9.3) with ESMTP id LAA20390; Tue, 4 Feb 2003 11:46:53 -0500 (EST) Received: from albion.dl.ac.uk (albion.dl.ac.uk [148.79.80.39]) by pacific-carrier-annex.mit.edu (8.9.2/8.9.2) with ESMTP id LAA07671 for ; Tue, 4 Feb 2003 11:46:52 -0500 (EST) Received: from fx by albion.dl.ac.uk with local (Exim 3.36 #1 (Debian)) id 18g6Di-0003Vf-00 for ; Tue, 04 Feb 2003 16:46:50 +0000 To: krb5-bugs@mit.edu Subject: fix for requiring gawk From: Dave Love Date: 04 Feb 2003 16:37:16 +0000 Message-Id: Lines: 41 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-RT-Original-Encoding: us-ascii Content-Length: 1050 I tried building 1.2.7 on a Solaris 8 box without gawk installed, and it failed. Here's a fix. 2003-02-04 Dave Love * Makefile.in (AWK): Use @AWK@. * configure.in: Use AC_PROG_AWK. =================================================================== RCS file: Makefile.in,v retrieving revision 1.1 diff -u -r1.1 Makefile.in --- Makefile.in 2003/02/04 15:55:23 1.1 +++ Makefile.in 2003/02/04 16:36:28 @@ -341,9 +341,9 @@ # # Part of building the PC release has to be done on Unix. This includes -# anything the requires awk. +# anything that requires awk. # -AWK = gawk +AWK = @AWK@ AH = util/et/et_h.awk AC = util/et/et_c.awk INC = include/ =================================================================== RCS file: configure.in,v retrieving revision 1.1 diff -u -r1.1 configure.in --- configure.in 2003/02/04 15:50:17 1.1 +++ configure.in 2003/02/04 15:50:24 @@ -56,6 +56,7 @@ AC_PROG_ARCHIVE AC_PROG_ARCHIVE_ADD AC_PROG_RANLIB +AC_PROG_AWK AC_CHECK_FUNCS(memmove) KRB5_BUILD_LIBOBJS KRB5_BUILD_LIBRARY