diff options
author | hobbs <hobbs> | 1999-12-12 02:27:19 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 1999-12-12 02:27:19 (GMT) |
commit | b183ce5e032c7c0f144f8f6ba001471e3d6ff802 (patch) | |
tree | 09981004145e8084f9d6e139d6691eb554f27fe7 /unix/configure.in | |
parent | cd9655fd919cf88d1b2f8ea9a542de1ba6e5649a (diff) | |
download | tcl-b183ce5e032c7c0f144f8f6ba001471e3d6ff802.zip tcl-b183ce5e032c7c0f144f8f6ba001471e3d6ff802.tar.gz tcl-b183ce5e032c7c0f144f8f6ba001471e3d6ff802.tar.bz2 |
* unix/configure.in:
* unix/tcl.m4:
* unix/tclUnixPipe.c: removed checking for compatible vfork
function and use of the vfork function. Modern VM systems rarely
suffer any performance degradation when fork is used, and it
solves multiple problems with vfork. Users that still want vfork
and add -Dfork=vfork to the compile flags. [Bug: 942 2228 1312]
Diffstat (limited to 'unix/configure.in')
-rw-r--r-- | unix/configure.in | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/unix/configure.in b/unix/configure.in index 316b9f8..430e944 100644 --- a/unix/configure.in +++ b/unix/configure.in @@ -2,7 +2,7 @@ dnl This file is an input file used by the GNU "autoconf" program to dnl generate the file "configure", which is run during Tcl installation dnl to configure the system for the local environment. AC_INIT(../generic/tcl.h) -# RCS: @(#) $Id: configure.in,v 1.50 1999/10/05 22:46:40 hobbs Exp $ +# RCS: @(#) $Id: configure.in,v 1.51 1999/12/12 02:27:19 hobbs Exp $ TCL_VERSION=8.3 TCL_MAJOR_VERSION=8 @@ -334,16 +334,6 @@ if test $tcl_ok = yes; then fi #-------------------------------------------------------------------- -# Check to see whether the system provides a vfork kernel call. -# If not, then use fork instead. Also, check for a problem with -# vforks and signals that can cause core dumps if a vforked child -# resets a signal handler. If the problem exists, then use fork -# instead of vfork. -#-------------------------------------------------------------------- - -SC_HAVE_VFORK - -#-------------------------------------------------------------------- # Check whether there is an strncasecmp function on this system. # This is a bit tricky because under SCO it's in -lsocket and # under Sequent Dynix it's in -linet. |