diff options
author | Satoshi Asami <asami@FreeBSD.org> | 2000-03-11 01:53:54 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 2000-03-11 01:53:54 +0000 |
commit | 359ea69fed47e3b1a0b4a42bc01dbfc59730fef1 (patch) | |
tree | 2d682cd193f265351c09baa9509cddc83b9fab8a /x11/gnome-libs | |
parent | Fix build error on extremely new -current caused by this: (diff) |
(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>
Notes
Notes:
svn path=/head/; revision=26734
Diffstat (limited to 'x11/gnome-libs')
-rw-r--r-- | x11/gnome-libs/files/patch-bk | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/x11/gnome-libs/files/patch-bk b/x11/gnome-libs/files/patch-bk new file mode 100644 index 000000000000..df2e66f4790d --- /dev/null +++ b/x11/gnome-libs/files/patch-bk @@ -0,0 +1,10 @@ +--- ./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 */ |