mirror of
https://github.com/samba-team/samba.git
synced 2025-01-24 02:04:21 +03:00
71632a1697
When starting GENSEC on the server, the auth subsystem context must be passed in, which now includes function pointers to the key elements. This should (when the other dependencies are fixed up) allow GENSEC to exist as a client or server library without bundling in too much of our server code. Andrew Bartlett
23 lines
532 B
Makefile
23 lines
532 B
Makefile
#######################
|
|
# Start SUBSYSTEM SMB_PROTOCOL
|
|
[SUBSYSTEM::SMB_PROTOCOL]
|
|
PUBLIC_DEPENDENCIES = \
|
|
ntvfs LIBPACKET CREDENTIALS samba_server_gensec
|
|
# End SUBSYSTEM SMB_PROTOCOL
|
|
#######################
|
|
|
|
SMB_PROTOCOL_OBJ_FILES = $(addprefix $(smb_serversrcdir)/smb/, \
|
|
receive.o \
|
|
negprot.o \
|
|
nttrans.o \
|
|
reply.o \
|
|
request.o \
|
|
search.o \
|
|
service.o \
|
|
sesssetup.o \
|
|
srvtime.o \
|
|
trans2.o \
|
|
signing.o)
|
|
|
|
$(eval $(call proto_header_template,$(smb_serversrcdir)/smb/smb_proto.h,$(SMB_PROTOCOL_OBJ_FILES:.o=.c)))
|