mirror of
https://github.com/torvalds/linux.git
synced 2024-11-13 23:51:39 +00:00
1e7af1b806
Unfortunately, spkm3 never got very far; while interoperability with one other implementation was demonstrated at some point, problems were found with the spec that were deemed not worth fixing. The kernel code is useless on its own without nfs-utils patches which were never merged into nfs-utils, and were only ever available from citi.umich.edu. They appear not to have been updated since 2005. Therefore it seems safe to assume that this code has no users, and never will. Signed-off-by: J. Bruce Fields <bfields@redhat.com>
14 lines
386 B
Makefile
14 lines
386 B
Makefile
#
|
|
# Makefile for Linux kernel rpcsec_gss implementation
|
|
#
|
|
|
|
obj-$(CONFIG_SUNRPC_GSS) += auth_rpcgss.o
|
|
|
|
auth_rpcgss-objs := auth_gss.o gss_generic_token.o \
|
|
gss_mech_switch.o svcauth_gss.o
|
|
|
|
obj-$(CONFIG_RPCSEC_GSS_KRB5) += rpcsec_gss_krb5.o
|
|
|
|
rpcsec_gss_krb5-objs := gss_krb5_mech.o gss_krb5_seal.o gss_krb5_unseal.o \
|
|
gss_krb5_seqnum.o gss_krb5_wrap.o gss_krb5_crypto.o gss_krb5_keys.o
|