From 94735f0ad7f67c56afa1513381c73e8f62cd44fc Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Mon, 6 May 2013 00:22:27 -0400 Subject: Remove use of vfork(). GCC was giving us warnings, most OS's now just run fork() when you call vfork(), and looking at the standard definition of vfork() we are a long way from using it safely anyway: you're not allowed to even call a function before you exec(). --- config.h.W32.template | 18 ------------------ 1 file changed, 18 deletions(-) (limited to 'config.h.W32.template') diff --git a/config.h.W32.template b/config.h.W32.template index 82d83ad..1cd08d4 100644 --- a/config.h.W32.template +++ b/config.h.W32.template @@ -123,9 +123,6 @@ this program. If not, see . */ /* Define to 1 if you have the 'fileno' function. */ #define HAVE_FILENO 1 -/* Define to 1 if you have the 'fork' function. */ -/* #undef HAVE_FORK */ - /* Define to 1 if you have the 'getcwd' function. */ #define HAVE_GETCWD 1 @@ -339,24 +336,12 @@ this program. If not, see . */ #define HAVE_UNISTD_H 1 #endif -/* Define to 1 if you have the 'vfork' function. */ -/* #undef HAVE_VFORK */ - -/* Define to 1 if you have the header file. */ -/* #undef HAVE_VFORK_H */ - /* Define to 1 if you have the 'wait3' function. */ /* #undef HAVE_WAIT3 */ /* Define to 1 if you have the 'waitpid' function. */ /* #undef HAVE_WAITPID */ -/* Define to 1 if 'fork' works. */ -/* #undef HAVE_WORKING_FORK */ - -/* Define to 1 if 'vfork' works. */ -/* #undef HAVE_WORKING_VFORK */ - /* Build host information. */ #define MAKE_HOST "Windows32" @@ -498,9 +483,6 @@ this program. If not, see . */ #define uintmax_t unsigned long #endif -/* Define as 'fork' if 'vfork' does not work. */ -/*#define vfork fork*/ - /* Define if you have that is POSIX.1 compatible. */ /* #undef HAVE_SYS_WAIT_H */ -- cgit v1.2.3