summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-07-04 05:40:19 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-07-04 05:40:19 +0000
commitf70b59c0393722baf3af24bedff7ba03553b7924 (patch)
treeb4c211d66075909e58d6791edd2af1fd000cf076
parent3133dbbdba20943f283f818f42265d956722e884 (diff)
- (bal) Makefile fix up requires scard.c
-rw-r--r--ChangeLog3
-rw-r--r--Makefile.in4
2 files changed, 4 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index f7e597364..bfcd160e2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -131,6 +131,7 @@
131 wait for children (i.e. dying sessions), send exit messages, 131 wait for children (i.e. dying sessions), send exit messages,
132 cleanup all channels. 132 cleanup all channels.
133 - (bal) forget a few new files in sync up. 133 - (bal) forget a few new files in sync up.
134 - (bal) Makefile fix up requires scard.c
134 135
13520010629 13620010629
136 - (bal) Removed net_aton() since we don't use it any more 137 - (bal) Removed net_aton() since we don't use it any more
@@ -5958,4 +5959,4 @@
5958 - Wrote replacements for strlcpy and mkdtemp 5959 - Wrote replacements for strlcpy and mkdtemp
5959 - Released 1.0pre1 5960 - Released 1.0pre1
5960 5961
5961$Id: ChangeLog,v 1.1377 2001/07/04 05:35:00 mouring Exp $ 5962$Id: ChangeLog,v 1.1378 2001/07/04 05:40:19 mouring Exp $
diff --git a/Makefile.in b/Makefile.in
index 1ec12691e..b6190e826 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
1# $Id: Makefile.in,v 1.180 2001/06/29 19:51:49 stevesk Exp $ 1# $Id: Makefile.in,v 1.181 2001/07/04 05:40:20 mouring Exp $
2 2
3prefix=@prefix@ 3prefix=@prefix@
4exec_prefix=@exec_prefix@ 4exec_prefix=@exec_prefix@
@@ -45,7 +45,7 @@ INSTALL_SSH_PRNG_CMDS=@INSTALL_SSH_PRNG_CMDS@
45 45
46TARGETS=ssh$(EXEEXT) sshd$(EXEEXT) ssh-add$(EXEEXT) ssh-keygen$(EXEEXT) ssh-keyscan${EXEEXT} ssh-agent$(EXEEXT) scp$(EXEEXT) $(SFTP_PROGS) 46TARGETS=ssh$(EXEEXT) sshd$(EXEEXT) ssh-add$(EXEEXT) ssh-keygen$(EXEEXT) ssh-keyscan${EXEEXT} ssh-agent$(EXEEXT) scp$(EXEEXT) $(SFTP_PROGS)
47 47
48LIBSSH_OBJS=atomicio.o authfd.o authfile.o bufaux.o buffer.o canohost.o channels.o cipher.o compat.o compress.o crc32.o deattack.o dh.o dispatch.o mac.o hostfile.o key.o kex.o kexdh.o kexgex.o log.o match.o misc.o mpaux.o nchan.o packet.o radix.o rijndael.o entropy.o readpass.o rsa.o ssh-dss.o ssh-rsa.o tildexpand.o ttymodes.o uidswap.o uuencode.o xmalloc.o 48LIBSSH_OBJS=atomicio.o authfd.o authfile.o bufaux.o buffer.o canohost.o channels.o cipher.o compat.o compress.o crc32.o deattack.o dh.o dispatch.o mac.o hostfile.o key.o kex.o kexdh.o kexgex.o log.o match.o misc.o mpaux.o nchan.o packet.o radix.o rijndael.o entropy.o readpass.o rsa.o scard.o ssh-dss.o ssh-rsa.o tildexpand.o ttymodes.o uidswap.o uuencode.o xmalloc.o
49 49
50SSHOBJS= ssh.o sshconnect.o sshconnect1.o sshconnect2.o sshtty.o readconf.o clientloop.o 50SSHOBJS= ssh.o sshconnect.o sshconnect1.o sshconnect2.o sshtty.o readconf.o clientloop.o
51 51