From 82e24bad6aa09b756e146b5bdc52999c7c33654f Mon Sep 17 00:00:00 2001 From: Peter Stephenson Date: Thu, 27 Jan 2005 12:00:57 +0000 Subject: users/8433: fix hang in configure on latest Cygwin --- configure.ac | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 0f256bfd2..1b87dadaf 100644 --- a/configure.ac +++ b/configure.ac @@ -1635,7 +1635,10 @@ dnl named FIFOs dnl ----------- AC_CACHE_CHECK(if named FIFOs work, zsh_cv_sys_fifo, -[AC_TRY_RUN([ +[if test "$host_os" = cygwin; then +zsh_cv_sys_fifo=no +else +AC_TRY_RUN([ #include #include main() @@ -1665,7 +1668,8 @@ main() ], zsh_cv_sys_fifo=yes, zsh_cv_sys_fifo=no, - zsh_cv_sys_fifo=yes)]) + zsh_cv_sys_fifo=yes) +fi]) AH_TEMPLATE([HAVE_FIFOS], [Define to 1 if system has working FIFOs.]) if test $zsh_cv_sys_fifo = yes; then -- cgit 1.4.1