diff options
author | Darren Tucker <dtucker@zip.com.au> | 2006-09-04 22:37:41 +1000 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2006-09-04 22:37:41 +1000 |
commit | 3e0891093a990b1d5111d5190f69c13277daedc7 (patch) | |
tree | d3349afb160ddf23371f19fa59640cc675c81922 | |
parent | ed0b59218ef9bb41a25922885d3fae7e67b8ba04 (diff) |
- (dtucker) [configure.ac] Define BROKEN_UPDWTMP on SCO OSR6 as the native
updwdtmp seems to generate invalid wtmp entries. From Roger Cornelius,
ok djm@
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | configure.ac | 6 |
2 files changed, 10 insertions, 3 deletions
@@ -1,3 +1,8 @@ | |||
1 | 20060904 | ||
2 | - (dtucker) [configure.ac] Define BROKEN_UPDWTMP on SCO OSR6 as the native | ||
3 | updwdtmp seems to generate invalid wtmp entries. From Roger Cornelius, | ||
4 | ok djm@ | ||
5 | |||
1 | 20060903 | 6 | 20060903 |
2 | - (dtucker) [configure.ac openbsd-compat/openbsd-compat.h] Check for | 7 | - (dtucker) [configure.ac openbsd-compat/openbsd-compat.h] Check for |
3 | declaration of writev(2) and declare it ourselves if necessary. Makes | 8 | declaration of writev(2) and declare it ourselves if necessary. Makes |
@@ -5390,4 +5395,4 @@ | |||
5390 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM | 5395 | - (djm) Trim deprecated options from INSTALL. Mention UsePAM |
5391 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu | 5396 | - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu |
5392 | 5397 | ||
5393 | $Id: ChangeLog,v 1.4528 2006/09/03 12:44:49 dtucker Exp $ | 5398 | $Id: ChangeLog,v 1.4529 2006/09/04 12:37:41 dtucker Exp $ |
diff --git a/configure.ac b/configure.ac index cdabbd8a1..32ecd0da8 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.358 2006/09/03 12:44:49 dtucker Exp $ | 1 | # $Id: configure.ac,v 1.359 2006/09/04 12:37:42 dtucker 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.358 $) | 18 | AC_REVISION($Revision: 1.359 $) |
19 | AC_CONFIG_SRCDIR([ssh.c]) | 19 | AC_CONFIG_SRCDIR([ssh.c]) |
20 | 20 | ||
21 | AC_CONFIG_HEADER(config.h) | 21 | AC_CONFIG_HEADER(config.h) |
@@ -512,6 +512,8 @@ mips-sony-bsd|mips-sony-newsos4) | |||
512 | TEST_SHELL=/u95/bin/sh | 512 | TEST_SHELL=/u95/bin/sh |
513 | AC_DEFINE(BROKEN_LIBIAF, 1, | 513 | AC_DEFINE(BROKEN_LIBIAF, 1, |
514 | [ia_uinfo routines not supported by OS yet]) | 514 | [ia_uinfo routines not supported by OS yet]) |
515 | AC_DEFINES(BROKEN_UPDWTMP, 1, | ||
516 | [using updwtmp will corrupt wtmp entries]) | ||
515 | ;; | 517 | ;; |
516 | *) AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*") | 518 | *) AC_DEFINE(LOCKED_PASSWD_STRING, "*LK*") |
517 | ;; | 519 | ;; |