1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-04 22:33:27 +00:00
freebsd-ports/x11/libgnome/files/patch-bk
Satoshi Asami 359ea69fed (forgot to cvs add this file -- should have been committed with patch-bj)
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>
2000-03-11 01:53:54 +00:00

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 */