diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2000-05-26 09:47:27 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2000-05-26 09:47:27 +0000 |
commit | ad9c7348b59fe131ef2771e720e6ac1ca60874fc (patch) | |
tree | 986ee1a4db18f3502ed5fec2008524ec9ac0fcd2 /configure.in | |
parent | 972fe43f512346ef90d680be3d4dbb4bd5d773e5 (diff) | |
download | zsh-ad9c7348b59fe131ef2771e720e6ac1ca60874fc.tar.gz zsh-ad9c7348b59fe131ef2771e720e6ac1ca60874fc.tar.xz zsh-ad9c7348b59fe131ef2771e720e6ac1ca60874fc.zip |
11587: Felix Rosencrantz: Src/pattern.c: uninitialised variable
11590: various cygwin fixes
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 802411335..f4de01060 100644 --- a/configure.in +++ b/configure.in @@ -367,6 +367,9 @@ AC_PROG_CPP dnl Figure out how to run C preprocessor. AC_PROG_GCC_TRADITIONAL dnl Do we need -traditional flag for gcc. AC_C_CONST dnl Does compiler support `const'. +AC_CYGWIN dnl Check for cygwin environment +AC_EXEEXT dnl Check for executable extension, e.g. .exe + fp_PROG_CC_STDC AC_MSG_CHECKING([whether to use prototypes]) if test ."$ansi2knr" = .yes || test ."$ansi2knr" = .no; then @@ -444,7 +447,7 @@ AC_CHECK_HEADERS(sys/time.h sys/times.h sys/select.h termcap.h termio.h \ limits.h fcntl.h libc.h sys/utsname.h sys/resource.h \ locale.h errno.h stdlib.h unistd.h sys/capability.h \ utmp.h utmpx.h sys/types.h pwd.h grp.h poll.h sys/mman.h \ - linux/tasks.h) + linux/tasks.h netinet/in_systm.h) if test $dynamic = yes; then AC_CHECK_HEADERS(dlfcn.h) AC_CHECK_HEADERS(dl.h) @@ -838,7 +841,8 @@ AC_CHECK_FUNCS(strftime difftime gettimeofday \ cap_get_proc \ getrlimit \ setlocale \ - uname) + uname \ + signgam) AC_FUNC_STRCOLL if test $ac_cv_func_setpgrp = yes; then |