From 5a52a8bc85b7302228ff2c638f4b29c0642f7b1a Mon Sep 17 00:00:00 2001 From: Pavel Roskin Date: Thu, 15 Aug 2002 21:23:33 +0000 Subject: [PATCH] * configure.in: Remove check for SIGTSTP, it's not needed for the subshell support. --- ChangeLog | 3 +++ configure.in | 15 +-------------- 2 files changed, 4 insertions(+), 14 deletions(-) diff --git a/ChangeLog b/ChangeLog index 749e6d692..6434a7e13 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2002-08-15 Pavel Roskin + * configure.in: Remove check for SIGTSTP, it's not needed for + the subshell support. + * acinclude.m4 (AC_SHORT_D_NAME_LEN): Remove, this test is now done at runtime. * configure.in: Don't use AC_SHORT_D_NAME_LEN. diff --git a/configure.in b/configure.in index 8b6ccf597..052301d51 100644 --- a/configure.in +++ b/configure.in @@ -466,18 +466,6 @@ AC_MSG_RESULT([$filel]) fi -AC_CACHE_CHECK([for SIGTSTP and SIGCONT signals], - [mc_cv_have_sigtstp], - [AC_TRY_LINK( -[#include -], -[kill(1, SIGTSTP); -kill(1, SIGCONT); -], -[mc_cv_have_sigtstp=yes], -[mc_cv_have_sigtstp=no])]) - - AC_MSG_CHECKING([for subshell support]) AC_ARG_WITH(subshell, [--with-subshell=optional To disable concurrent shell by default @@ -499,8 +487,7 @@ AC_ARG_WITH(subshell, result="no" ;; *) - dnl If SIGTSTP is missing, then no subshell - result="$mc_cv_have_sigtstp" + result="yes" ;; esac ])