aboutsummaryrefslogtreecommitdiff
path: root/nfs/Makefile
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2021-08-22 02:07:14 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2021-08-22 02:07:14 +0200
commit3b378a6535bc8d9942875ba094301274819905e4 (patch)
treef6d9cf51c64f56c1b12dd7fb99ca7ba38b79e53c /nfs/Makefile
parentcd10e825fe4b5458c0deaa300449e0cd872570ef (diff)
downloadhurd-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 'nfs/Makefile')
-rw-r--r--nfs/Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/nfs/Makefile b/nfs/Makefile
index 265d0273..32cf4f53 100644
--- a/nfs/Makefile
+++ b/nfs/Makefile
@@ -30,3 +30,6 @@ HURDLIBS = netfs fshelp iohelp ports ihash shouldbeinlibc
LDLIBS = -lpthread
include ../Makeconf
+
+CFLAGS += $(libtirpc_CFLAGS)
+LDLIBS += $(libtirpc_LIBS)