summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-07-04 03:07:15 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-07-04 03:07:15 +0000
commitee3a8e4abc63a525cb137bb9a233feabed184c8f (patch)
treebbcafbc79f3c8269eef0e4ac853f10d321e92d81
parente06eb68226061e1b6e369f4aebe3b3c07ce1f2c7 (diff)
- (bal) Missed Makefile.in change. keysign needs readconf.o
-rw-r--r--ChangeLog3
-rw-r--r--Makefile.in4
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 @@
57 globally. based on discussions with deraadt, itojun and sommerfeld; 57 globally. based on discussions with deraadt, itojun and sommerfeld;
58 ok itojun@ 58 ok itojun@
59 - (bal) Failed password attempts don't increment counter on AIX. Bug #145 59 - (bal) Failed password attempts don't increment counter on AIX. Bug #145
60 - (bal) Missed Makefile.in change. keysign needs readconf.o
60 61
6120020702 6220020702
62 - (djm) Use PAM_MSG_MEMBER for PAM_TEXT_INFO messages, use xmalloc & 63 - (djm) Use PAM_MSG_MEMBER for PAM_TEXT_INFO messages, use xmalloc &
@@ -1265,4 +1266,4 @@
1265 - (stevesk) entropy.c: typo in debug message 1266 - (stevesk) entropy.c: typo in debug message
1266 - (djm) ssh-keygen -i needs seeded RNG; report from markus@ 1267 - (djm) ssh-keygen -i needs seeded RNG; report from markus@
1267 1268
1268$Id: ChangeLog,v 1.2330 2002/07/04 00:27:21 mouring Exp $ 1269$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 @@
1# $Id: Makefile.in,v 1.217 2002/06/25 23:45:42 tim Exp $ 1# $Id: Makefile.in,v 1.218 2002/07/04 03:07:15 mouring 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@
@@ -129,7 +129,7 @@ ssh-keygen$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keygen.o
129 $(LD) -o $@ ssh-keygen.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 129 $(LD) -o $@ ssh-keygen.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
130 130
131ssh-keysign$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keysign.o 131ssh-keysign$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keysign.o
132 $(LD) -o $@ ssh-keysign.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS) 132 $(LD) -o $@ ssh-keysign.o readconf.o $(LDFLAGS) -lssh -lopenbsd-compat $(LIBS)
133 133
134ssh-keyscan$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keyscan.o 134ssh-keyscan$(EXEEXT): $(LIBCOMPAT) libssh.a ssh-keyscan.o
135 $(LD) -o $@ ssh-keyscan.o $(LDFLAGS) -lssh -lopenbsd-compat -lssh $(LIBS) 135 $(LD) -o $@ ssh-keyscan.o $(LDFLAGS) -lssh -lopenbsd-compat -lssh $(LIBS)