From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22038 invoked from network); 21 May 1999 20:56:35 -0000 Received: from sunsite.auc.dk (130.225.51.30) by ns1.primenet.com.au with SMTP; 21 May 1999 20:56:35 -0000 Received: (qmail 16276 invoked by alias); 21 May 1999 20:56:27 -0000 Mailing-List: contact zsh-workers-help@sunsite.auc.dk; run by ezmlm Precedence: bulk X-No-Archive: yes X-Seq: 6329 Received: (qmail 16263 invoked from network); 21 May 1999 20:56:27 -0000 Date: Fri, 21 May 1999 13:57:33 -0700 From: Scott RoLanD To: **Zsh Workers List Subject: PATCH: cygwin and pws-19 Message-ID: <19990521135733.A26046@chat.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.95.4i ed was indeed my problem; here is a patch for configure.in: *** configure.in.orig Mon May 17 11:57:44 1999 --- configure.in Fri May 21 16:49:32 1999 *************** *** 349,354 **** --- 349,358 ---- AC_PROG_INSTALL dnl Check for BSD compatible `install' AC_PROG_AWK dnl Check for mawk,gawk,nawk, then awk. AC_CHECK_PROGS([YODL], [yodl], [:]) + AC_CHECK_PROG([ED], [ed], [ed]) + if test -z "$ED"; then + AC_MSG_ERROR([ed not found in \$PATH]) + fi dnl ------------------ dnl CHECK HEADER FILES *************** *** 1302,1308 **** echo '1,$s@^#( *"#) *$ac_file_inputs |@#1 |@' echo 'w' echo 'q' ! ) | tr '#' '\\' | ed $CONFIG_STATUS >/dev/null 2>/dev/null] test "$real_no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1 --- 1306,1312 ---- echo '1,$s@^#( *"#) *$ac_file_inputs |@#1 |@' echo 'w' echo 'q' ! ) | tr '#' '\\' | $ED $CONFIG_STATUS >/dev/null 2>/dev/null] test "$real_no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS || exit 1 -- Scott RoLanD http://www.chat.net/~shr/