From: Richard M. Stallman Date: Wed, 4 Sep 1996 16:27:55 +0000 (+0000) Subject: (create_process): Test HAVE_SETPGID for using setpgid. X-Git-Tag: emacs-20.1~3817 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=99c1aeca5e1b6296a2c604fb085562bdf393f1ba;p=emacs.git (create_process): Test HAVE_SETPGID for using setpgid. --- diff --git a/src/process.c b/src/process.c index b33b7201913..bb68c2b0a1e 100644 --- a/src/process.c +++ b/src/process.c @@ -1437,7 +1437,7 @@ create_process (process, new_argv, current_dir) /* In order to get a controlling terminal on some versions of BSD, it is necessary to put the process in pgrp 0 before it opens the terminal. */ -#ifdef OSF1 +#ifdef HAVE_SETPGID setpgid (0, 0); #else setpgrp (0, 0);