diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2021-08-22 02:07:14 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2021-08-22 02:07:14 +0200 |
commit | 3b378a6535bc8d9942875ba094301274819905e4 (patch) | |
tree | f6d9cf51c64f56c1b12dd7fb99ca7ba38b79e53c /nfsd/loop.c | |
parent | cd10e825fe4b5458c0deaa300449e0cd872570ef (diff) | |
download | hurd-3b378a6535bc8d9942875ba094301274819905e4.tar.gz hurd-3b378a6535bc8d9942875ba094301274819905e4.tar.bz2 hurd-3b378a6535bc8d9942875ba094301274819905e4.zip |
nfs/nfsd: Use libtirpc
Sun RPC is being phased out from glibc.
* configure.ac: Detect libtirpc.pc, subst libtirpc_CFLAGS and libtirpc_LIBS.
* config.make.in: Subst libtirpc_CFLAGS and libtirpc_LIBS.
* nfs/Makefile, nfsd/Makefile: Include libtirpc_CFLAGS and libtirpc_LIBS
* nfs/mount.c: Include <rpc/xdr.h>
* nfsd/main.c: Likewise.
* nfsd/ops.c: Likewise.
* nfsd/cache.c: Undef TRUE/FALSE after including rpc/ headers.
* nfsd/loop.c: Likewise.
Diffstat (limited to 'nfsd/loop.c')
-rw-r--r-- | nfsd/loop.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/nfsd/loop.c b/nfsd/loop.c index f2d6d546..d94c5d10 100644 --- a/nfsd/loop.c +++ b/nfsd/loop.c @@ -23,14 +23,14 @@ #include "nfsd.h" -#include <rpc/pmap_prot.h> #include "../nfs/mount.h" -#undef TRUE -#undef FALSE #define malloc spoogie_woogie /* barf */ -#include <rpc/xdr.h> #include <rpc/types.h> +#include <rpc/xdr.h> +#undef TRUE +#undef FALSE +#include <rpc/pmap_prot.h> #include <rpc/auth.h> #include <rpc/rpc_msg.h> #undef malloc |