diff options
author | wpaul <wpaul@FreeBSD.org> | 1995-02-26 21:11:08 +0000 |
---|---|---|
committer | wpaul <wpaul@FreeBSD.org> | 1995-02-26 21:11:08 +0000 |
commit | af81e664a83f4e0b8acc6615080f9cc7c22fc3ca (patch) | |
tree | ff446d0dc6213be39bc21520a4219b18bd3b746f /include/rpcsvc | |
parent | d5240ccc32a1694305e503fe664c460f3ccdd0d1 (diff) | |
download | FreeBSD-src-af81e664a83f4e0b8acc6615080f9cc7c22fc3ca.zip FreeBSD-src-af81e664a83f4e0b8acc6615080f9cc7c22fc3ca.tar.gz |
The bootparam protocol file needs some extra includes in FreeBSD in order
to properly resolve some definitions in <nfs/nfs.h>. I suppose nobody noticed
this before because no one's tried to build bootparamd in FreeBSD until
now.
(Yes, you read that right: I've got bootparamd ready to go. And
rarpd is on the way. :)
Diffstat (limited to 'include/rpcsvc')
-rw-r--r-- | include/rpcsvc/bootparam_prot.x | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/rpcsvc/bootparam_prot.x b/include/rpcsvc/bootparam_prot.x index 44c1e68..a6d4f0e 100644 --- a/include/rpcsvc/bootparam_prot.x +++ b/include/rpcsvc/bootparam_prot.x @@ -41,12 +41,16 @@ %#include <rpc/types.h> %#include <sys/time.h> %#include <sys/errno.h> +%#include <sys/param.h> +%#include <sys/syslimits.h> +%#include <sys/ucred.h> +%#include <nfs/nfsv2.h> %#include <nfs/nfs.h> #else %#ifndef lint %/*static char sccsid[] = "from: @(#)bootparam_prot.x 1.2 87/06/24 Copyr 1987 Sun Micro";*/ %/*static char sccsid[] = "from: @(#)bootparam_prot.x 2.1 88/08/01 4.0 RPCSRC";*/ -%static char rcsid[] = "$Id: bootparam_prot.x,v 1.1 1993/09/14 17:42:42 jtc Exp $"; +%static char rcsid[] = "bootparam_prot.x,v 1.1 1994/08/04 19:01:44 wollman Exp"; %#endif /* not lint */ #endif |