diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 6 insertions, 4 deletions
@@ -1,7 +1,7 @@ | |||
1 | 20030923 | 1 | 20030923 |
2 | - (dtucker) [Makefile.in] Bug #644: Fix "make clean" for out-of-tree | 2 | - (dtucker) [Makefile.in] Bug #644: Fix "make clean" for out-of-tree |
3 | builds. Portability corrections from tim@. | 3 | builds. Portability corrections from tim@. |
4 | - (dtucker) [configure.ac] Bug #655: uid swapping issues on Mac OS X. | 4 | - (dtucker) [configure.ac] Bug #665: uid swapping issues on Mac OS X. |
5 | Patch from max at quendi.de. | 5 | Patch from max at quendi.de. |
6 | - (dtucker) [configure.ac] Bug #657: uid swapping issues on BSDi. | 6 | - (dtucker) [configure.ac] Bug #657: uid swapping issues on BSDi. |
7 | - (dtucker) [configure.ac] Bug #653: uid swapping issues on Tru64. | 7 | - (dtucker) [configure.ac] Bug #653: uid swapping issues on Tru64. |
@@ -25,6 +25,8 @@ | |||
25 | - (dtucker) [INSTALL] Bug #686: Document requirement for zlib 1.1.4 or | 25 | - (dtucker) [INSTALL] Bug #686: Document requirement for zlib 1.1.4 or |
26 | higher. | 26 | higher. |
27 | - (tim) Fix typo. s/SETEIUD_BREAKS_SETUID/SETEUID_BREAKS_SETUID/ | 27 | - (tim) Fix typo. s/SETEIUD_BREAKS_SETUID/SETEUID_BREAKS_SETUID/ |
28 | - (tim) [configure.ac] Bug 665: move 3 new AC_DEFINES outside of AC_TRY_RUN. | ||
29 | Report by distler AT golem ph utexas edu. | ||
28 | 30 | ||
29 | 20030919 | 31 | 20030919 |
30 | - (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL; | 32 | - (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL; |
@@ -1161,4 +1163,4 @@ | |||
1161 | - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. | 1163 | - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. |
1162 | Report from murple@murple.net, diagnosis from dtucker@zip.com.au | 1164 | Report from murple@murple.net, diagnosis from dtucker@zip.com.au |
1163 | 1165 | ||
1164 | $Id: ChangeLog,v 1.3021 2003/09/22 04:00:59 tim Exp $ | 1166 | $Id: ChangeLog,v 1.3022 2003/09/22 04:38:11 tim Exp $ |
diff --git a/configure.ac b/configure.ac index fedad3b07..ac1a4d9f3 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.163 2003/09/22 04:01:00 tim Exp $ | 1 | # $Id: configure.ac,v 1.164 2003/09/22 04:38:11 tim Exp $ |
2 | 2 | ||
3 | AC_INIT | 3 | AC_INIT |
4 | AC_CONFIG_SRCDIR([ssh.c]) | 4 | AC_CONFIG_SRCDIR([ssh.c]) |
@@ -131,10 +131,10 @@ main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16)) | |||
131 | }], [AC_MSG_RESULT(working)], | 131 | }], [AC_MSG_RESULT(working)], |
132 | [AC_MSG_RESULT(buggy) | 132 | [AC_MSG_RESULT(buggy) |
133 | AC_DEFINE(BROKEN_GETADDRINFO)], | 133 | AC_DEFINE(BROKEN_GETADDRINFO)], |
134 | [AC_MSG_RESULT(assume it is working)]) | ||
134 | AC_DEFINE(SETEUID_BREAKS_SETUID) | 135 | AC_DEFINE(SETEUID_BREAKS_SETUID) |
135 | AC_DEFINE(BROKEN_SETREUID) | 136 | AC_DEFINE(BROKEN_SETREUID) |
136 | AC_DEFINE(BROKEN_SETREGID) | 137 | AC_DEFINE(BROKEN_SETREGID) |
137 | [AC_MSG_RESULT(assume it is working)]) | ||
138 | ;; | 138 | ;; |
139 | *-*-hpux10.26) | 139 | *-*-hpux10.26) |
140 | if test -z "$GCC"; then | 140 | if test -z "$GCC"; then |