summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2014-05-15 14:58:07 +1000
committerDamien Miller <djm@mindrot.org>2014-05-15 14:58:07 +1000
commite5b9f0f2ee6e133894307e44e862b66426990733 (patch)
tree166d49510b4e41907e1f0172a3fdef4fffab23cc /Makefile.in
parentb9c566788a9ebd6a9d466f47a532124f111f0542 (diff)
- (djm) [Makefile.in configure.ac sshbuf-getput-basic.c]
[sshbuf-getput-crypto.c sshbuf.c] compilation and portability fixes
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in12
1 files changed, 10 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 28a8ec41b..53f0f1f72 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
1# $Id: Makefile.in,v 1.356 2014/02/04 00:12:56 djm Exp $ 1# $Id: Makefile.in,v 1.357 2014/05/15 04:58:08 djm Exp $
2 2
3# uncomment if you run a non bourne compatable shell. Ie. csh 3# uncomment if you run a non bourne compatable shell. Ie. csh
4#SHELL = @SH@ 4#SHELL = @SH@
@@ -63,7 +63,15 @@ MANFMT=@MANFMT@
63 63
64TARGETS=ssh$(EXEEXT) sshd$(EXEEXT) ssh-add$(EXEEXT) ssh-keygen$(EXEEXT) ssh-keyscan${EXEEXT} ssh-keysign${EXEEXT} ssh-pkcs11-helper$(EXEEXT) ssh-agent$(EXEEXT) scp$(EXEEXT) sftp-server$(EXEEXT) sftp$(EXEEXT) 64TARGETS=ssh$(EXEEXT) sshd$(EXEEXT) ssh-add$(EXEEXT) ssh-keygen$(EXEEXT) ssh-keyscan${EXEEXT} ssh-keysign${EXEEXT} ssh-pkcs11-helper$(EXEEXT) ssh-agent$(EXEEXT) scp$(EXEEXT) sftp-server$(EXEEXT) sftp$(EXEEXT)
65 65
66LIBSSH_OBJS=authfd.o authfile.o bufaux.o bufbn.o buffer.o \ 66LIBOPENSSH_OBJS=\
67 ssherr.o \
68 sshbuf.o \
69 sshbuf-getput-basic.o \
70 sshbuf-misc.o \
71 sshbuf-getput-crypto.o
72
73LIBSSH_OBJS=${LIBOPENSSH_OBJS} \
74 authfd.o authfile.o bufaux.o bufbn.o buffer.o \
67 canohost.o channels.o cipher.o cipher-aes.o \ 75 canohost.o channels.o cipher.o cipher-aes.o \
68 cipher-bf1.o cipher-ctr.o cipher-3des1.o cleanup.o \ 76 cipher-bf1.o cipher-ctr.o cipher-3des1.o cleanup.o \
69 compat.o compress.o crc32.o deattack.o fatal.o hostfile.o \ 77 compat.o compress.o crc32.o deattack.o fatal.o hostfile.o \