diff options
author | Dirk Meyer <dinoex@FreeBSD.org> | 2004-08-22 21:38:32 +0000 |
---|---|---|
committer | Dirk Meyer <dinoex@FreeBSD.org> | 2004-08-22 21:38:32 +0000 |
commit | 2ad028d982052b99e630dc9c0eab78ba4c8c550a (patch) | |
tree | f9f9557de1af968876051dcdf589f88177ba227a | |
parent | 38acf032b2719f00c5524a1657051cc2ce814172 (diff) |
- fix build on sparc without vfork.h
Notes
Notes:
svn path=/head/; revision=117068
-rw-r--r-- | news/nntp/files/patch-server-spawn.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/news/nntp/files/patch-server-spawn.c b/news/nntp/files/patch-server-spawn.c new file mode 100644 index 000000000000..ca655dd4083f --- /dev/null +++ b/news/nntp/files/patch-server-spawn.c @@ -0,0 +1,14 @@ +--- server/spawn.c.orig Fri Dec 9 03:53:14 1994 ++++ server/spawn.c Sun Aug 22 23:36:19 2004 +@@ -5,9 +5,11 @@ + #include "common.h" + + #include <signal.h> ++#ifndef __FreeBSD__ + #ifdef sparc + #ifndef SVR4 + #include <vfork.h> ++#endif + #endif + #endif + #ifdef XFER_TIMEOUT |