6e4dbb7fef
Summary: This allows installing packages that depend on kerberos libraries without pulling in all the binaries. It also moves libgssapi to runtime to allow installing kerbereos libraries without adding a dependancy on the large utilities package. It makes sense to put libgssapi in runtime rather than kerberos-lib since this is a plugin layer which is intended to support any GSS-API mechanisms, not just kerberos. A good example of a package which uses kerberos libraries without needing the kerberos utilities is sshd. This uses the kerberos GSS-API libraries to implement its GSSAPIAuthentication option. MFC after: 2 weeks Subscribers: imp Differential Revision: https://reviews.freebsd.org/D36028
61 lines
1.2 KiB
Makefile
61 lines
1.2 KiB
Makefile
# $FreeBSD$
|
|
|
|
PACKAGE= kerberos-lib
|
|
|
|
LIB= gssapi_spnego
|
|
LDFLAGS= -Wl,-Bsymbolic -Wl,--no-undefined
|
|
LIBADD= gssapi heimbase asn1 roken
|
|
SHLIB_MAJOR= 10
|
|
|
|
SRCS= accept_sec_context.c \
|
|
compat.c \
|
|
context_stubs.c \
|
|
cred_stubs.c \
|
|
external.c \
|
|
init_sec_context.c \
|
|
freebsd_compat.c \
|
|
${GEN:S/.x$/.c/:S/.hx$/.h/} \
|
|
gss_oid.c
|
|
|
|
GEN= asn1_ContextFlags.x \
|
|
asn1_MechType.x \
|
|
asn1_MechTypeList.x \
|
|
asn1_NegotiationToken.x \
|
|
asn1_NegotiationTokenWin.x \
|
|
asn1_NegHints.x \
|
|
asn1_NegTokenInit.x \
|
|
asn1_NegTokenInitWin.x \
|
|
asn1_NegTokenResp.x \
|
|
spnego_asn1.hx \
|
|
spnego_asn1-priv.hx
|
|
|
|
CFLAGS+=-I${KRB5DIR}/lib/gssapi
|
|
CFLAGS+=-I${KRB5DIR}/lib/gssapi/gssapi
|
|
CFLAGS+=-I${KRB5DIR}/lib/gssapi/spnego
|
|
CFLAGS+=-I${KRB5DIR}/lib/asn1
|
|
CFLAGS+=-I${SRCTOP}/lib/libgssapi
|
|
CFLAGS+=-I${KRB5DIR}/lib/roken -I.
|
|
|
|
CLEANFILES= ${GEN} ${GEN:S/.x$/.c/:S/.hx$/.h/} \
|
|
spnego_asn1_files spnego_asn1-template.c
|
|
|
|
.ORDER: ${GEN}
|
|
${GEN:[2..-1]}: .NOMETA
|
|
${GEN}: spnego.asn1 spnego.opt
|
|
${ASN1_COMPILE} --option-file=${.ALLSRC:M*.opt} \
|
|
${.ALLSRC:M*.asn1} spnego_asn1
|
|
|
|
.SUFFIXES: .h .c .x .hx
|
|
|
|
.x.c:
|
|
${CP} ${.IMPSRC} ${.TARGET}
|
|
|
|
.hx.h:
|
|
${CP} ${.IMPSRC} ${.TARGET}
|
|
|
|
.include <bsd.lib.mk>
|
|
|
|
.SUFFIXES: .h .c .x .hx
|
|
|
|
.PATH: ${KRB5DIR}/lib/gssapi/spnego ${SRCTOP}/lib/libgssapi ${.CURDIR:H}/libgssapi_krb5
|