summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2003-09-22 11:07:40 +1000
committerDarren Tucker <dtucker@zip.com.au>2003-09-22 11:07:40 +1000
commit20379a37fa82030fcf46fac963e9f344dab03196 (patch)
treefb64a466f0885483bd102f76336cb1582d4dc640
parent8a49dd107b0921b033753e6119e46b59b38e58a2 (diff)
- (dtucker) [configure.ac] Bug #655: uid swapping issues on Mac OS X.
Patch from max at quendi.de.
-rw-r--r--ChangeLog4
-rw-r--r--configure.ac5
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 480d42f91..06e61e9e4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,8 @@
120030923 120030923
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
520030919 720030919
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
3AC_INIT 3AC_INIT
4AC_CONFIG_SRCDIR([ssh.c]) 4AC_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)