mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
359ea69fed
Fix build error on extremely new -current caused by this: === src/sys/sys/socket.h: ---------------------------- revision 1.38 date: 2000/03/03 11:13:03; author: shin; state: Exp; lines: +8 -13 CMSG_XXX macros alignment fixes to follow RFC2292. Approved by: jkh Submitted by: Partly from tech@openbsd Reviewed by: itojun --------------------------- === Basically you need to include <machine/param.h> before <signal.h>. Problem diagnosed by: Ade Lovett <ade@FreeBSD.org>
11 lines
370 B
Plaintext
11 lines
370 B
Plaintext
--- ./zvt/subshell-includes.h.org Wed Oct 20 05:51:19 1999
|
|
+++ ./zvt/subshell-includes.h Fri Mar 10 17:21:01 2000
|
|
@@ -12,6 +12,7 @@
|
|
#include <sys/resource.h>
|
|
#include <limits.h>
|
|
#include <fcntl.h>
|
|
+#include <machine/param.h>
|
|
#include <sys/signal.h>
|
|
#include <stdlib.h> /* For errno, putenv, etc. */
|
|
#include <errno.h> /* For errno on SunOS systems */
|