From: Glenn L McGrath Date: Sat, 9 Dec 2000 23:59:04 +0000 (-0000) Subject: NFS_PORT and NFS_FHSIZE are not defined in the kernel headers that come with libc6... X-Git-Tag: 0_48~37 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=c52a97d79fc6852abe1c04b3c4873a38ea443384;p=oweals%2Fbusybox.git NFS_PORT and NFS_FHSIZE are not defined in the kernel headers that come with libc6-2.2-5 This just defines that if they arent found in the kernel header --- diff --git a/nfsmount.c b/nfsmount.c index a8c0b0ea6..ae9b99552 100644 --- a/nfsmount.c +++ b/nfsmount.c @@ -53,6 +53,12 @@ #include "nfsmount.h" #include /* For the kernels nfs stuff */ +#ifndef NFS_FHSIZE +#define NFS_FHSIZE 32 +#endif +#ifndef NFS_PORT +#define NFS_PORT 2049 +#endif /* Disable the nls stuff */ # undef bindtextdomain diff --git a/util-linux/nfsmount.c b/util-linux/nfsmount.c index a8c0b0ea6..ae9b99552 100644 --- a/util-linux/nfsmount.c +++ b/util-linux/nfsmount.c @@ -53,6 +53,12 @@ #include "nfsmount.h" #include /* For the kernels nfs stuff */ +#ifndef NFS_FHSIZE +#define NFS_FHSIZE 32 +#endif +#ifndef NFS_PORT +#define NFS_PORT 2049 +#endif /* Disable the nls stuff */ # undef bindtextdomain