Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
PATCH: cygwin and pws-19
- X-seq: zsh-workers 6329
- From: Scott RoLanD <shr@xxxxxxxx>
- To: **Zsh Workers List <zsh-workers@xxxxxxxxxxxxxx>
- Subject: PATCH: cygwin and pws-19
- Date: Fri, 21 May 1999 13:57:33 -0700
- Mailing-list: contact zsh-workers-help@xxxxxxxxxxxxxx; run by ezmlm
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/
Messages sorted by:
Reverse Date,
Date,
Thread,
Author