From c375c43b73df248b6c1b7c87608ba491600c3e0a Mon Sep 17 00:00:00 2001 From: "Kaveh R. Ghazi" Date: Mon, 2 Nov 1998 07:20:48 +0000 Subject: configure.in: Call AC_FUNC_VFORK. * configure.in: Call AC_FUNC_VFORK. * collect2.c: Define VFORK_STRING as a printable string for error messages (either "vfork" or "fork".) If HAVE_VFORK_H is defined, include vfork.h. If VMS is defined, define vfork() appropriately. Remove vfork check on USG, we're using autoconf. (collect_execute): Pass VFORK_STRING to fatal_perror instead of checking locally what string to pass. (scan_prog_file): Likewise. (scan_libraries): Likewise. * gcc.c: Remove vfork check on USG, we're using autoconf. Besides, no calls to vfork/fork occur in this file. * protoize.c: Likewise. From-SVN: r23498 --- gcc/gcc.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'gcc/gcc.c') diff --git a/gcc/gcc.c b/gcc/gcc.c index a7eb71e..3182f68 100644 --- a/gcc/gcc.c +++ b/gcc/gcc.c @@ -69,10 +69,6 @@ extern void set_std_prefix PROTO((char *, int)); #define exit __posix_exit #endif -#ifdef USG -#define vfork fork -#endif /* USG */ - /* Test if something is a normal file. */ #ifndef S_ISREG #define S_ISREG(m) (((m) & S_IFMT) == S_IFREG) -- cgit v1.1