about summary refs log tree commit diff
path: root/zshconfig.ac
diff options
context:
space:
mode:
authorAndrey Borzenkov <bor@users.sourceforge.net>2001-06-06 11:38:29 +0000
committerAndrey Borzenkov <bor@users.sourceforge.net>2001-06-06 11:38:29 +0000
commit19db317af38996f7aee0d657a93a72124597dfcb (patch)
tree5e1b360a6bfa310089974c7c21c381e60c2fadc8 /zshconfig.ac
parent78087d2e8d68b62127297c720046251735b2c663 (diff)
downloadzsh-19db317af38996f7aee0d657a93a72124597dfcb.tar.gz
zsh-19db317af38996f7aee0d657a93a72124597dfcb.tar.xz
zsh-19db317af38996f7aee0d657a93a72124597dfcb.zip
14758: use host_os instead of ac_cv_cygwin
Diffstat (limited to 'zshconfig.ac')
-rw-r--r--zshconfig.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/zshconfig.ac b/zshconfig.ac
index 65589391e..f2b2ea263 100644
--- a/zshconfig.ac
+++ b/zshconfig.ac
@@ -1538,7 +1538,7 @@ if test "x$aixdynamic" = xyes; then
   zsh_cv_sys_dynamic_strip_exe="${zsh_cv_sys_dynamic_strip_exe=yes}"
   zsh_cv_sys_dynamic_strip_lib="${zsh_cv_sys_dynamic_strip_lib=yes}"
   zsh_cv_sys_dynamic_broken="${zsh_cv_sys_dynamic_broken=no}"
-elif test "x$ac_cv_cygwin" = xyes; then
+elif test "$host_os" = cygwin; then
   DL_EXT="${DL_EXT=dll}"
   DLLD="${DLLD=dllwrap}"
   DLLDFLAGS="${DLLDFLAGS=--export-all-symbols}"
@@ -1738,7 +1738,7 @@ if test "x$dynamic" = xyes; then
   if $strip_libldflags && test "$zsh_cv_sys_dynamic_strip_lib" = yes; then
     LIBLDFLAGS="$LIBLDFLAGS -s"
   fi
-  if test "x$ac_cv_cygwin" = xyes; then
+  if test "$host_os" = cygwin; then
     INSTLIB="install.cygwin-lib"
     UNINSTLIB="uninstall.cygwin-lib"
   fi
@@ -1772,7 +1772,7 @@ AC_SUBST(SHORTBOOTNAMES)
 AC_SUBST(INSTLIB)dnl
 AC_SUBST(UNINSTLIB)dnl
 
-if test x"$ac_cv_cygwin" = xyes; then
+if test "$host_os" = cygwin; then
   EXTRAZSHOBJS="$EXTRAZSHOBJS zsh.res.o"
 fi