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; |
@@ -1157,4 +1159,4 @@ | |||
1157 | - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. | 1159 | - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. |
1158 | Report from murple@murple.net, diagnosis from dtucker@zip.com.au | 1160 | Report from murple@murple.net, diagnosis from dtucker@zip.com.au |
1159 | 1161 | ||
1160 | $Id: ChangeLog,v 1.2994.2.24 2003/09/22 04:03:46 tim Exp $ | 1162 | $Id: ChangeLog,v 1.2994.2.25 2003/09/22 04:39:14 tim Exp $ |
diff --git a/configure.ac b/configure.ac index ae995a70e..15f6e1f43 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.154.2.8 2003/09/22 04:03:46 tim Exp $ | 1 | # $Id: configure.ac,v 1.154.2.9 2003/09/22 04:39:14 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 |