mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +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
20 lines
498 B
Makefile
20 lines
498 B
Makefile
#######################
|
|
# Start SUBSYSTEM SMB2_PROTOCOL
|
|
[SUBSYSTEM::SMB2_PROTOCOL]
|
|
PUBLIC_DEPENDENCIES = \
|
|
ntvfs LIBPACKET LIBCLI_SMB2 samba_server_gensec
|
|
# End SUBSYSTEM SMB2_PROTOCOL
|
|
#######################
|
|
|
|
SMB2_PROTOCOL_OBJ_FILES = $(addprefix $(smb_serversrcdir)/smb2/, \
|
|
receive.o \
|
|
negprot.o \
|
|
sesssetup.o \
|
|
tcon.o \
|
|
fileio.o \
|
|
fileinfo.o \
|
|
find.o \
|
|
keepalive.o)
|
|
|
|
$(eval $(call proto_header_template,$(smb_serversrcdir)/smb2/smb2_proto.h,$(SMB2_PROTOCOL_OBJ_FILES:.o=.c)))
|