about summary refs log tree commit diff
path: root/configure.ac
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2005-03-14 10:51:15 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2005-03-14 10:51:15 +0000
commit323f8ec7416998258ae70a156855e59891ba8a01 (patch)
treef95faa818597208063daf88b67a3c863c1a71ad8 /configure.ac
parent538fa548c328b23bf4bb27c0b59916bec448b447 (diff)
downloadzsh-323f8ec7416998258ae70a156855e59891ba8a01.tar.gz
zsh-323f8ec7416998258ae70a156855e59891ba8a01.tar.xz
zsh-323f8ec7416998258ae70a156855e59891ba8a01.zip
20886: configure.ac: SIGTTOU -> TTOU
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 471b8893d..c97fbacf6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1863,7 +1863,7 @@ esac],[zsh_working_tcsetpgrp=check])
 if test "x$ac_cv_func_tcsetpgrp" = xyes; then
 case "x$zsh_working_tcsetpgrp" in
   xcheck)
-    trap "" SIGTTOU > /dev/null 2>&1 || :
+    trap "" TTOU > /dev/null 2>&1 || :
     AC_CACHE_CHECK(if tcsetpgrp() actually works,
     zsh_cv_sys_tcsetpgrp,
     [AC_TRY_RUN([
@@ -1894,7 +1894,7 @@ esac
 Try running configure with --with-tcsetpgrp or --without-tcsetpgrp]);;
       *)      AC_MSG_ERROR([unexpected return status]);;
     esac
-    trap - SIGTTOU > /dev/null 2>&1 || :
+    trap - TTOU > /dev/null 2>&1 || :
     ;;
   xyes) :;;
   xno)  AC_DEFINE(BROKEN_TCSETPGRP);;