diff options
author | Christopher Faylor <me@cgf.cx> | 2000-07-16 17:38:41 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-07-16 17:38:41 +0000 |
commit | b4e59f5f1419800d7a2248d3721a9db88e80d4d8 (patch) | |
tree | b19a62d00cb145ad5e1c15b19a66deef6bf32761 /winsup/cygwin/configure.in | |
parent | 8e382d804957ac50dc61af60eef001cae13c25be (diff) | |
download | newlib-b4e59f5f1419800d7a2248d3721a9db88e80d4d8.zip newlib-b4e59f5f1419800d7a2248d3721a9db88e80d4d8.tar.gz newlib-b4e59f5f1419800d7a2248d3721a9db88e80d4d8.tar.bz2 |
* acconfig.h: Add support for NEWVFORK.
* config.h.in: Ditto.
* configure.in: Add --enable-vfork option.
* configure: Regenerate.
* dcrt0.cc (quoted): Detect and fix up quoted backslashes.
* sigproc.cc (proc_subproc): Correctly name handle of newly added child process
to avoid erroneous debugging messages about closing the wrong handle.
Diffstat (limited to 'winsup/cygwin/configure.in')
-rw-r--r-- | winsup/cygwin/configure.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/winsup/cygwin/configure.in b/winsup/cygwin/configure.in index 4c23360..fde0ae8 100644 --- a/winsup/cygwin/configure.in +++ b/winsup/cygwin/configure.in @@ -161,6 +161,14 @@ no) ;; esac ]) +AC_ARG_ENABLE(vfork, +[ --enable-vfork Build a cygwin DLL which uses experimental vfork code], +[case "${enableval}" in +yes) AC_DEFINE(NEWVFORK) ;; +no) ;; +esac +]) + dnl The only time we might want to transform the install names dnl is for unix x cygwin. Otherwise we don't. For now we don't |