- (dtucker) [configure.ac] Bug #655: uid swapping issues on Mac OS X.

Patch from max at quendi.de.
This commit is contained in:
Darren Tucker 2003-09-22 11:07:40 +10:00
parent 8a49dd107b
commit 20379a37fa
2 changed files with 7 additions and 2 deletions

View File

@ -1,6 +1,8 @@
20030923
- (dtucker) [Makefile.in] Bug #644: Fix "make clean" for out-of-tree
builds. Portability corrections from tim@.
- (dtucker) [configure.ac] Bug #655: uid swapping issues on Mac OS X.
Patch from max at quendi.de.
20030919
- (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL;
@ -1137,4 +1139,4 @@
- Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
Report from murple@murple.net, diagnosis from dtucker@zip.com.au
$Id: ChangeLog,v 1.3010 2003/09/22 00:59:34 dtucker Exp $
$Id: ChangeLog,v 1.3011 2003/09/22 01:07:40 dtucker Exp $

View File

@ -1,4 +1,4 @@
# $Id: configure.ac,v 1.156 2003/09/19 06:41:02 djm Exp $
# $Id: configure.ac,v 1.157 2003/09/22 01:07:40 dtucker Exp $
AC_INIT
AC_CONFIG_SRCDIR([ssh.c])
@ -131,6 +131,9 @@ main() { if (NSVersionOfRunTimeLibrary("System") >= (60 << 16))
}], [AC_MSG_RESULT(working)],
[AC_MSG_RESULT(buggy)
AC_DEFINE(BROKEN_GETADDRINFO)],
AC_DEFINE(SETEUID_BREAKS_SETUID)
AC_DEFINE(BROKEN_SETREUID)
AC_DEFINE(BROKEN_SETREGID)
[AC_MSG_RESULT(assume it is working)])
;;
*-*-hpux10.26)