diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-05-22 22:58:39 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-05-26 09:53:06 +0200 |
commit | 31c6679bf12bbcd6626bfd5066bb2e751314e9c2 (patch) | |
tree | ef6447a14a449bbdfc0cccdd4df51886b1655a39 /source3/Makefile.in | |
parent | bd8a38b60e933bcffd90ea8bed75898a421cbdad (diff) | |
download | samba-31c6679bf12bbcd6626bfd5066bb2e751314e9c2.tar.gz samba-31c6679bf12bbcd6626bfd5066bb2e751314e9c2.tar.bz2 samba-31c6679bf12bbcd6626bfd5066bb2e751314e9c2.zip |
s3:smbd: add support for SMB2 signing
metze
Diffstat (limited to 'source3/Makefile.in')
-rw-r--r-- | source3/Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source3/Makefile.in b/source3/Makefile.in index 1120092f90..2b30b4a5bd 100644 --- a/source3/Makefile.in +++ b/source3/Makefile.in @@ -359,7 +359,8 @@ UTIL_OBJ = ../lib/util/rbtree.o ../lib/util/signal.o ../lib/util/time.o \ CRYPTO_OBJ = ../lib/crypto/crc32.o ../lib/crypto/md5.o \ ../lib/crypto/hmacmd5.o ../lib/crypto/arcfour.o \ - ../lib/crypto/md4.o + ../lib/crypto/md4.o \ + ../lib/crypto/sha256.o ../lib/crypto/hmacsha256.o LIB_OBJ = $(LIBSAMBAUTIL_OBJ) $(UTIL_OBJ) $(CRYPTO_OBJ) \ lib/messages.o librpc/gen_ndr/ndr_messaging.o lib/messages_local.o \ @@ -750,7 +751,7 @@ SMBD_OBJ_SRV = smbd/files.o smbd/chgpasswd.o smbd/connection.o \ smbd/dnsregister.o smbd/globals.o \ smbd/smb2_server.o smbd/smb2_negprot.o \ smbd/smb2_sesssetup.o smbd/smb2_tcon.o \ - smbd/smb2_keepalive.o \ + smbd/smb2_keepalive.o smbd/smb2_signing.o \ $(MANGLE_OBJ) @VFS_STATIC@ SMBD_OBJ_BASE = $(PARAM_WITHOUT_REG_OBJ) $(SMBD_OBJ_SRV) $(LIBSMB_OBJ) \ |