summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--Makefile.in6
-rw-r--r--configure.ac5
3 files changed, 8 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 250599b57..3f9fc6afe 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -35,6 +35,7 @@
35 set k->cert = NULL after freeing it 35 set k->cert = NULL after freeing it
36 - [blocks.c ed25519.c fe25519.c fe25519.h ge25519.c ge25519.h] 36 - [blocks.c ed25519.c fe25519.c fe25519.h ge25519.c ge25519.h]
37 [ge25519_base.data hash.c sc25519.c sc25519.h verify.c] Fix RCS idents 37 [ge25519_base.data hash.c sc25519.c sc25519.h verify.c] Fix RCS idents
38 - [Makefile.in] Add ed25519 sources
38 39
3920131205 4020131205
40 - (djm) OpenBSD CVS Sync 41 - (djm) OpenBSD CVS Sync
diff --git a/Makefile.in b/Makefile.in
index 91f39d4f3..2c263af7e 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,4 +1,4 @@
1# $Id: Makefile.in,v 1.345 2013/11/21 03:12:23 djm Exp $ 1# $Id: Makefile.in,v 1.346 2013/12/07 00:35:37 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@
@@ -74,7 +74,9 @@ LIBSSH_OBJS=authfd.o authfile.o bufaux.o bufbn.o buffer.o \
74 kexdh.o kexgex.o kexdhc.o kexgexc.o bufec.o kexecdh.o kexecdhc.o \ 74 kexdh.o kexgex.o kexdhc.o kexgexc.o bufec.o kexecdh.o kexecdhc.o \
75 msg.o progressmeter.o dns.o entropy.o gss-genr.o umac.o umac128.o \ 75 msg.o progressmeter.o dns.o entropy.o gss-genr.o umac.o umac128.o \
76 jpake.o schnorr.o ssh-pkcs11.o krl.o smult_curve25519_ref.o \ 76 jpake.o schnorr.o ssh-pkcs11.o krl.o smult_curve25519_ref.o \
77 kexc25519.o kexc25519c.o poly1305.o chacha.o cipher-chachapoly.o 77 kexc25519.o kexc25519c.o poly1305.o chacha.o cipher-chachapoly.o \
78 ssh-ed25519.o \
79 sc25519.o ge25519.o fe25519.o ed25519.o verify.o hash.o blocks.o \
78 80
79SSHOBJS= ssh.o readconf.o clientloop.o sshtty.o \ 81SSHOBJS= ssh.o readconf.o clientloop.o sshtty.o \
80 sshconnect.o sshconnect1.o sshconnect2.o mux.o \ 82 sshconnect.o sshconnect1.o sshconnect2.o mux.o \
diff --git a/configure.ac b/configure.ac
index c691200bc..95240f51c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.544 2013/12/05 00:00:16 dtucker Exp $ 1# $Id: configure.ac,v 1.545 2013/12/07 00:35:37 djm Exp $
2# 2#
3# Copyright (c) 1999-2004 Damien Miller 3# Copyright (c) 1999-2004 Damien Miller
4# 4#
@@ -15,7 +15,7 @@
15# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 16
17AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org]) 17AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org])
18AC_REVISION($Revision: 1.544 $) 18AC_REVISION($Revision: 1.545 $)
19AC_CONFIG_SRCDIR([ssh.c]) 19AC_CONFIG_SRCDIR([ssh.c])
20AC_LANG([C]) 20AC_LANG([C])
21 21
@@ -1540,6 +1540,7 @@ AC_CHECK_FUNCS([ \
1540 b64_pton \ 1540 b64_pton \
1541 __b64_pton \ 1541 __b64_pton \
1542 bcopy \ 1542 bcopy \
1543 bcrypt_pbkdf \
1543 bindresvport_sa \ 1544 bindresvport_sa \
1544 clock \ 1545 clock \
1545 closefrom \ 1546 closefrom \