POSIX.1-2001 marks vfork(2) OBSOLETE.
POSIX.1-2008 removes the specification of vfork(2).
MacOS system headers declare vfork(2) as deprecated.
We only use vfork(2) in negotiate_wrapper, where it is not necessary.
exit(EXIT_FAILURE);
}
- if (( fpid = vfork()) < 0 ) {
+ if (( fpid = fork()) < 0 ) {
fprintf(stderr, "%s| %s: Failed first fork\n", LogTime(), PROGRAM);
exit(EXIT_FAILURE);
}
exit(EXIT_FAILURE);
}
- if (( fpid = vfork()) < 0 ) {
+ if (( fpid = fork()) < 0 ) {
fprintf(stderr, "%s| %s: Failed second fork\n", LogTime(), PROGRAM);
exit(EXIT_FAILURE);
}
## Please see the COPYING and CONTRIBUTORS files for details.
##
-AC_CHECK_FUNCS(vfork,[BUILD_HELPER="wrapper"])
+BUILD_HELPER="wrapper"