diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.ac | 5 |
2 files changed, 7 insertions, 2 deletions
@@ -1,6 +1,8 @@ | |||
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. | ||
5 | Patch from max at quendi.de. | ||
4 | 6 | ||
5 | 20030919 | 7 | 20030919 |
6 | - (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL; | 8 | - (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL; |
@@ -1137,4 +1139,4 @@ | |||
1137 | - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. | 1139 | - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. |
1138 | Report from murple@murple.net, diagnosis from dtucker@zip.com.au | 1140 | Report from murple@murple.net, diagnosis from dtucker@zip.com.au |
1139 | 1141 | ||
1140 | $Id: ChangeLog,v 1.3010 2003/09/22 00:59:34 dtucker Exp $ | 1142 | $Id: ChangeLog,v 1.3011 2003/09/22 01:07:40 dtucker Exp $ |
diff --git a/configure.ac b/configure.ac index 7f96c0473..538ecd2d9 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.156 2003/09/19 06:41:02 djm Exp $ | 1 | # $Id: configure.ac,v 1.157 2003/09/22 01:07:40 dtucker Exp $ |
2 | 2 | ||
3 | AC_INIT | 3 | AC_INIT |
4 | AC_CONFIG_SRCDIR([ssh.c]) | 4 | AC_CONFIG_SRCDIR([ssh.c]) |
@@ -131,6 +131,9 @@ 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_DEFINE(SETEUID_BREAKS_SETUID) | ||
135 | AC_DEFINE(BROKEN_SETREUID) | ||
136 | AC_DEFINE(BROKEN_SETREGID) | ||
134 | [AC_MSG_RESULT(assume it is working)]) | 137 | [AC_MSG_RESULT(assume it is working)]) |
135 | ;; | 138 | ;; |
136 | *-*-hpux10.26) | 139 | *-*-hpux10.26) |