diff options
Diffstat (limited to 'winsup/cygwin/configure.in')
-rw-r--r-- | winsup/cygwin/configure.in | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/winsup/cygwin/configure.in b/winsup/cygwin/configure.in index d8e91806b..1654da438 100644 --- a/winsup/cygwin/configure.in +++ b/winsup/cygwin/configure.in @@ -179,12 +179,13 @@ 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 +vfork="${enableval}" ]) +case "$vfork" in +no) ;; +yes|*) AC_DEFINE_UNQUOTED(NEWVFORK) ;; +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 |