summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2003-09-22 11:18:47 +1000
committerDarren Tucker <dtucker@zip.com.au>2003-09-22 11:18:47 +1000
commited9eb02326f653be1a76b5772bbe9a1632114f57 (patch)
tree908985772e74b6c187c36db6f13ef22a0f7914da
parent20379a37fa82030fcf46fac963e9f344dab03196 (diff)
- (dtucker) [configure.ac] Bug #657: uid swappping issues on BSDi.
-rw-r--r--ChangeLog3
-rw-r--r--configure.ac7
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 06e61e9e4..df175c219 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,7 @@
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 #655: 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 swappping issues on BSDi.
6 7
720030919 820030919
8 - (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL; 9 - (djm) Bug #683: Remove reference to --with-ipv4-default from INSTALL;
@@ -1139,4 +1140,4 @@
1139 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. 1140 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
1140 Report from murple@murple.net, diagnosis from dtucker@zip.com.au 1141 Report from murple@murple.net, diagnosis from dtucker@zip.com.au
1141 1142
1142$Id: ChangeLog,v 1.3011 2003/09/22 01:07:40 dtucker Exp $ 1143$Id: ChangeLog,v 1.3012 2003/09/22 01:18:47 dtucker Exp $
diff --git a/configure.ac b/configure.ac
index 538ecd2d9..5d1f85012 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.157 2003/09/22 01:07:40 dtucker Exp $ 1# $Id: configure.ac,v 1.158 2003/09/22 01:18:47 dtucker Exp $
2 2
3AC_INIT 3AC_INIT
4AC_CONFIG_SRCDIR([ssh.c]) 4AC_CONFIG_SRCDIR([ssh.c])
@@ -230,6 +230,11 @@ mips-sony-bsd|mips-sony-newsos4)
230*-*-freebsd*) 230*-*-freebsd*)
231 check_for_libcrypt_later=1 231 check_for_libcrypt_later=1
232 ;; 232 ;;
233*-*-bsdi*)
234 AC_DEFINE(SETEUID_BREAKS_SETUID)
235 AC_DEFINE(BROKEN_SETREUID)
236 AC_DEFINE(BROKEN_SETREGID)
237 ;;
233*-next-*) 238*-next-*)
234 conf_lastlog_location="/usr/adm/lastlog" 239 conf_lastlog_location="/usr/adm/lastlog"
235 conf_utmp_location=/etc/utmp 240 conf_utmp_location=/etc/utmp