diff options
author | Tanaka Akira <akr@users.sourceforge.net> | 1999-04-15 18:21:49 +0000 |
---|---|---|
committer | Tanaka Akira <akr@users.sourceforge.net> | 1999-04-15 18:21:49 +0000 |
commit | 640a840d2e94f0fc245ef8632050c37af23c6b94 (patch) | |
tree | bc0835572657666fe6d27cb73ea8a716e683925a /configure.in | |
parent | 04a89199d02a3ee6c4b3d89a6c782bdb0a4f1bc8 (diff) | |
download | zsh-640a840d2e94f0fc245ef8632050c37af23c6b94.tar.gz zsh-640a840d2e94f0fc245ef8632050c37af23c6b94.tar.xz zsh-640a840d2e94f0fc245ef8632050c37af23c6b94.zip |
zsh-3.1.5-pws-13 zsh-3.1.5-pws-13
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.in b/configure.in index 11aab932d..f022744f4 100644 --- a/configure.in +++ b/configure.in @@ -847,8 +847,8 @@ dnl CHECK FOR SYSTEMS REQUIRING GETCWD AC_CACHE_CHECK(whether we should use the native getcwd, zsh_cv_use_getcwd, [case "${host_cpu}-${host_vendor}-${host_os}" in - *QNX*) zsh_cv_use_getcwd=no ;; - *) zsh_cv_use_getcwd=yes ;; + *QNX*) zsh_cv_use_getcwd=yes ;; + *) zsh_cv_use_getcwd=no ;; esac]) if test $zsh_cv_use_getcwd = yes; then AC_DEFINE(USE_GETCWD) @@ -893,7 +893,7 @@ dnl system names directly. dnl The doubled square brackets are necessary because autoconf uses m4. AC_CACHE_CHECK(if typeahead needs FIONREAD, zsh_cv_sys_clobbers_typeahead, [case x-$host_vendor-$host_os in - x-*-ultrix* | x-*-dgux* | x-sni-sysv4*) + x-*-ultrix* | x-*-dgux* | x-sni-sysv4* | x-*-irix*) zsh_cv_sys_clobbers_typeahead=yes;; *) zsh_cv_sys_clobbers_typeahead=no;; |