diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.ac | 5 | ||||
-rw-r--r-- | defines.h | 6 |
3 files changed, 11 insertions, 4 deletions
@@ -1,6 +1,8 @@ | |||
1 | 20070927 | 1 | 20070927 |
2 | - (dtucker) [configure.ac atomicio.c] Fall back to including <sys/poll.h> if | 2 | - (dtucker) [configure.ac atomicio.c] Fall back to including <sys/poll.h> if |
3 | we don't have <poll.h> (eq QNX). From bacon at cs nyu edu. | 3 | we don't have <poll.h> (eq QNX). From bacon at cs nyu edu. |
4 | - (dtucker) [configure.ac defines.h] Shadow expiry does not work on QNX6 | ||
5 | so disable it for that platform. From bacon at cs nyu edu. | ||
4 | 6 | ||
5 | 20070921 | 7 | 20070921 |
6 | - (djm) [atomicio.c] Fix spin avoidance for platforms that define | 8 | - (djm) [atomicio.c] Fix spin avoidance for platforms that define |
@@ -3266,4 +3268,4 @@ | |||
3266 | OpenServer 6 and add osr5bigcrypt support so when someone migrates | 3268 | OpenServer 6 and add osr5bigcrypt support so when someone migrates |
3267 | passwords between UnixWare and OpenServer they will still work. OK dtucker@ | 3269 | passwords between UnixWare and OpenServer they will still work. OK dtucker@ |
3268 | 3270 | ||
3269 | $Id: ChangeLog,v 1.4759 2007/09/26 21:00:09 dtucker Exp $ | 3271 | $Id: ChangeLog,v 1.4760 2007/09/26 21:03:20 dtucker Exp $ |
diff --git a/configure.ac b/configure.ac index 7ef93c7d0..e9402a735 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.385 2007/09/26 21:00:09 dtucker Exp $ | 1 | # $Id: configure.ac,v 1.386 2007/09/26 21:03:20 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.385 $) | 18 | AC_REVISION($Revision: 1.386 $) |
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) |
@@ -786,6 +786,7 @@ mips-sony-bsd|mips-sony-newsos4) | |||
786 | AC_DEFINE(MISSING_FD_MASK, 1, [Define on *nto-qnx systems]) | 786 | AC_DEFINE(MISSING_FD_MASK, 1, [Define on *nto-qnx systems]) |
787 | AC_DEFINE(DISABLE_LASTLOG) | 787 | AC_DEFINE(DISABLE_LASTLOG) |
788 | AC_DEFINE(SSHD_ACQUIRES_CTTY) | 788 | AC_DEFINE(SSHD_ACQUIRES_CTTY) |
789 | AC_DEFINE(BROKEN_SHADOW_EXPIRE, 1, [QNX shadow support is broken]) | ||
789 | enable_etc_default_login=no # has incompatible /etc/default/login | 790 | enable_etc_default_login=no # has incompatible /etc/default/login |
790 | case "$host" in | 791 | case "$host" in |
791 | *-*-nto-qnx6*) | 792 | *-*-nto-qnx6*) |
@@ -25,7 +25,7 @@ | |||
25 | #ifndef _DEFINES_H | 25 | #ifndef _DEFINES_H |
26 | #define _DEFINES_H | 26 | #define _DEFINES_H |
27 | 27 | ||
28 | /* $Id: defines.h,v 1.144 2007/09/17 15:32:33 tim Exp $ */ | 28 | /* $Id: defines.h,v 1.145 2007/09/26 21:03:20 dtucker Exp $ */ |
29 | 29 | ||
30 | 30 | ||
31 | /* Constants */ | 31 | /* Constants */ |
@@ -540,6 +540,10 @@ struct winsize { | |||
540 | # undef HAVE_UPDWTMPX | 540 | # undef HAVE_UPDWTMPX |
541 | #endif | 541 | #endif |
542 | 542 | ||
543 | #if defined(BROKEN_SHADOW_EXPIRE) && defined(HAS_SHADOW_EXPIRE) | ||
544 | # undef HAS_SHADOW_EXPIRE | ||
545 | #endif | ||
546 | |||
543 | #if defined(HAVE_OPENLOG_R) && defined(SYSLOG_DATA_INIT) && \ | 547 | #if defined(HAVE_OPENLOG_R) && defined(SYSLOG_DATA_INIT) && \ |
544 | defined(SYSLOG_R_SAFE_IN_SIGHAND) | 548 | defined(SYSLOG_R_SAFE_IN_SIGHAND) |
545 | # define DO_LOG_SAFE_IN_SIGHAND | 549 | # define DO_LOG_SAFE_IN_SIGHAND |