diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | Makefile.in | 4 | ||||
-rw-r--r-- | configure.ac | 3 |
3 files changed, 7 insertions, 3 deletions
@@ -1,6 +1,7 @@ | |||
1 | 20020507 | 1 | 20020507 |
2 | - (tim) [openbsd-compat/bsd-arc4random.c] fix logic on when seed_rng() is | 2 | - (tim) [openbsd-compat/bsd-arc4random.c] fix logic on when seed_rng() is |
3 | called. Report by Chris Maxwell <maxwell@cs.dal.ca> | 3 | called. Report by Chris Maxwell <maxwell@cs.dal.ca> |
4 | - (tim) [Makefile.in configure.ac] set SHELL variable in Makefile | ||
4 | 5 | ||
5 | 20020507 | 6 | 20020507 |
6 | - (tim) [configure.ac openbsd-compat/bsd-misc.c openbsd-compat/bsd-misc.h] | 7 | - (tim) [configure.ac openbsd-compat/bsd-misc.c openbsd-compat/bsd-misc.h] |
@@ -543,4 +544,4 @@ | |||
543 | - (stevesk) entropy.c: typo in debug message | 544 | - (stevesk) entropy.c: typo in debug message |
544 | - (djm) ssh-keygen -i needs seeded RNG; report from markus@ | 545 | - (djm) ssh-keygen -i needs seeded RNG; report from markus@ |
545 | 546 | ||
546 | $Id: ChangeLog,v 1.2097 2002/05/08 22:57:18 tim Exp $ | 547 | $Id: ChangeLog,v 1.2098 2002/05/08 23:04:14 tim Exp $ |
diff --git a/Makefile.in b/Makefile.in index 5d45bce65..62859bf13 100644 --- a/Makefile.in +++ b/Makefile.in | |||
@@ -1,4 +1,6 @@ | |||
1 | # $Id: Makefile.in,v 1.204 2002/04/15 03:24:00 djm Exp $ | 1 | # $Id: Makefile.in,v 1.205 2002/05/08 23:04:14 tim Exp $ |
2 | |||
3 | SHELL = @SH@ | ||
2 | 4 | ||
3 | prefix=@prefix@ | 5 | prefix=@prefix@ |
4 | exec_prefix=@exec_prefix@ | 6 | exec_prefix=@exec_prefix@ |
diff --git a/configure.ac b/configure.ac index cc79ce8ad..6f2f9baf8 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.54 2002/05/08 02:51:32 tim Exp $ | 1 | # $Id: configure.ac,v 1.55 2002/05/08 23:04:14 tim Exp $ |
2 | 2 | ||
3 | AC_INIT | 3 | AC_INIT |
4 | AC_CONFIG_SRCDIR([ssh.c]) | 4 | AC_CONFIG_SRCDIR([ssh.c]) |
@@ -21,6 +21,7 @@ AC_PATH_PROGS(FILEPRIV, filepriv, true, /sbin:/usr/sbin) | |||
21 | AC_PATH_PROG(TEST_MINUS_S_SH, bash) | 21 | AC_PATH_PROG(TEST_MINUS_S_SH, bash) |
22 | AC_PATH_PROG(TEST_MINUS_S_SH, ksh) | 22 | AC_PATH_PROG(TEST_MINUS_S_SH, ksh) |
23 | AC_PATH_PROG(TEST_MINUS_S_SH, sh) | 23 | AC_PATH_PROG(TEST_MINUS_S_SH, sh) |
24 | AC_PATH_PROG(SH, sh) | ||
24 | 25 | ||
25 | # System features | 26 | # System features |
26 | AC_SYS_LARGEFILE | 27 | AC_SYS_LARGEFILE |