diff options
author | Damien Miller <djm@mindrot.org> | 2013-12-07 11:35:36 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2013-12-07 11:35:36 +1100 |
commit | a913442bac8a26fd296a3add51293f8f6f9b3b4c (patch) | |
tree | 90dd6c188cd3044b81d49602b042a948eb4a143c | |
parent | ca570a519cb846da61d002c7f46fa92e39c83e45 (diff) |
- [Makefile.in] Add ed25519 sources
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | Makefile.in | 6 | ||||
-rw-r--r-- | configure.ac | 5 |
3 files changed, 8 insertions, 4 deletions
@@ -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 | ||
39 | 20131205 | 40 | 20131205 |
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 | ||
79 | SSHOBJS= ssh.o readconf.o clientloop.o sshtty.o \ | 81 | SSHOBJS= 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 | ||
17 | AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org]) | 17 | AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org]) |
18 | AC_REVISION($Revision: 1.544 $) | 18 | AC_REVISION($Revision: 1.545 $) |
19 | AC_CONFIG_SRCDIR([ssh.c]) | 19 | AC_CONFIG_SRCDIR([ssh.c]) |
20 | AC_LANG([C]) | 20 | AC_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 \ |