mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
* configure.in: Remove check for SIGTSTP, it's not needed for
the subshell support.
This commit is contained in:
parent
0dbf2d1caf
commit
5a52a8bc85
@ -1,5 +1,8 @@
|
||||
2002-08-15 Pavel Roskin <proski@gnu.org>
|
||||
|
||||
* 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.
|
||||
|
15
configure.in
15
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 <signal.h>
|
||||
],
|
||||
[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
|
||||
])
|
||||
|
Loading…
Reference in New Issue
Block a user