From ee3a8e4abc63a525cb137bb9a233feabed184c8f Mon Sep 17 00:00:00 2001 From: Ben Lindstrom Date: Thu, 4 Jul 2002 03:07:15 +0000 Subject: [PATCH] - (bal) Missed Makefile.in change. keysign needs readconf.o --- ChangeLog | 3 ++- Makefile.in | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index e9021d452..7451ee269 100644 --- a/ChangeLog +++ b/ChangeLog @@ -57,6 +57,7 @@ globally. based on discussions with deraadt, itojun and sommerfeld; ok itojun@ - (bal) Failed password attempts don't increment counter on AIX. Bug #145 + - (bal) Missed Makefile.in change. keysign needs readconf.o 20020702 - (djm) Use PAM_MSG_MEMBER for PAM_TEXT_INFO messages, use xmalloc & @@ -1265,4 +1266,4 @@ - (stevesk) entropy.c: typo in debug message - (djm) ssh-keygen -i needs seeded RNG; report from markus@ -$Id: ChangeLog,v 1.2330 2002/07/04 00:27:21 mouring Exp $ +$Id: ChangeLog,v 1.2331 2002/07/04 03:07:15 mouring Exp $ diff --git a/Makefile.in b/Makefile.in index e7faa1591..363d0ab1e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,4 +1,4 @@ -# $Id: Makefile.in,v 1.217 2002/06/25 23:45:42 tim Exp $ +# $Id: Makefile.in,v 1.218 2002/07/04 03:07:15 mouring Exp $ # uncomment if you run a non bourne compatable shell. Ie. csh #SHELL = @SH@ @@ -129,7 +129,7 @@ ssh-keygen$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keygen.o $(LD) -o $@ ssh-keygen.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) ssh-keysign$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keysign.o - $(LD) -o $@ ssh-keysign.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) + $(LD) -o $@ ssh-keysign.o readconf.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) ssh-keyscan$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keyscan.o $(LD) -o $@ ssh-keyscan.o $(LDFLAGS) -lssh -lopenbsd-compat -lssh $(LIBS)