diff options
author | Sheldon Hearn <sheldonh@FreeBSD.org> | 2001-10-11 12:44:46 +0000 |
---|---|---|
committer | Sheldon Hearn <sheldonh@FreeBSD.org> | 2001-10-11 12:44:46 +0000 |
commit | 3f644150998f95889ba3403ebf2eed799513a778 (patch) | |
tree | 788fc547583ad0ed942344d8eb5aa23d5148b37c /net/sharity-light | |
parent | upgrade to 0.2.0 and unbreak (diff) |
Fix sharity-light for the new world order in -CURRENT, where NFS
has been split into nfsclient and nfsserver.
This fix still leaves a 2 week window of breakage, because
__FreeBSD_version wasn't bumped for the change.
Notes
Notes:
svn path=/head/; revision=48686
Diffstat (limited to 'net/sharity-light')
-rw-r--r-- | net/sharity-light/files/patch-ae | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/net/sharity-light/files/patch-ae b/net/sharity-light/files/patch-ae new file mode 100644 index 000000000000..6589d7f90c2d --- /dev/null +++ b/net/sharity-light/files/patch-ae @@ -0,0 +1,20 @@ +--- nfs/syscalls.c.orig Thu Oct 11 14:20:28 2001 ++++ nfs/syscalls.c Thu Oct 11 14:20:33 2001 +@@ -56,7 +56,16 @@ + #define NFSX_V2FH 32 + #ifdef BSD4_4_LITE2 + # include <nfs/rpcv2.h> +-# include <nfs/nfs.h> ++# if (__FreeBSD_version >= 500024) ++# ++# /* XXX __FreeBSD_version 500024 is the closest we have to the ++# NFS reorganization that took place 2001-09-18. This leaves ++# a 2 week window. */ ++# ++# include <nfsclient/nfs.h> ++# else ++# include <nfs/nfs.h> ++# endif + #endif + int syscall_mount(char *dir, void *root_fh, int sock_fd, + struct sockaddr_in *socket, char *mntfrom) |