summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--configure.ac8
-rw-r--r--defines.h4
3 files changed, 11 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index b9a7aece4..c6db95e39 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,8 @@
6 platform's _res if it has one. Should fix problem of DNSSEC record lookups 6 platform's _res if it has one. Should fix problem of DNSSEC record lookups
7 on NetBSD as reported by Curt Sampson. 7 on NetBSD as reported by Curt Sampson.
8 - (dtucker) [openbsd-compat/xmmap.c] Include stdlib.h for mkstemp prototype. 8 - (dtucker) [openbsd-compat/xmmap.c] Include stdlib.h for mkstemp prototype.
9 - (dtucker) [configure.ac defines.h] Have configure check for MAXSYMLINKS
10 so we don't get redefinition warnings.
9 11
1020070406 1220070406
11 - (dtucker) [INSTALL] Update the systems that have PAM as standard. Link 13 - (dtucker) [INSTALL] Update the systems that have PAM as standard. Link
@@ -2887,4 +2889,4 @@
2887 OpenServer 6 and add osr5bigcrypt support so when someone migrates 2889 OpenServer 6 and add osr5bigcrypt support so when someone migrates
2888 passwords between UnixWare and OpenServer they will still work. OK dtucker@ 2890 passwords between UnixWare and OpenServer they will still work. OK dtucker@
2889 2891
2890$Id: ChangeLog,v 1.4655 2007/04/29 04:02:43 dtucker Exp $ 2892$Id: ChangeLog,v 1.4656 2007/04/29 04:39:02 dtucker Exp $
diff --git a/configure.ac b/configure.ac
index 4d551b897..f2e88f1f2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.376 2007/04/29 03:58:07 dtucker Exp $ 1# $Id: configure.ac,v 1.377 2007/04/29 04:39:03 dtucker Exp $
2# 2#
3# Copyright (c) 1999-2004 Damien Miller 3# Copyright (c) 1999-2004 Damien Miller
4# 4#
@@ -15,7 +15,7 @@
15# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. 15# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16 16
17AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org) 17AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org)
18AC_REVISION($Revision: 1.376 $) 18AC_REVISION($Revision: 1.377 $)
19AC_CONFIG_SRCDIR([ssh.c]) 19AC_CONFIG_SRCDIR([ssh.c])
20 20
21AC_CONFIG_HEADER(config.h) 21AC_CONFIG_HEADER(config.h)
@@ -1364,6 +1364,10 @@ AC_CHECK_DECLS(writev, , , [
1364#include <unistd.h> 1364#include <unistd.h>
1365 ]) 1365 ])
1366 1366
1367AC_CHECK_DECLS(MAXSYMLINKS, , , [
1368#include <sys/param.h>
1369 ])
1370
1367AC_CHECK_FUNCS(setresuid, [ 1371AC_CHECK_FUNCS(setresuid, [
1368 dnl Some platorms have setresuid that isn't implemented, test for this 1372 dnl Some platorms have setresuid that isn't implemented, test for this
1369 AC_MSG_CHECKING(if setresuid seems to work) 1373 AC_MSG_CHECKING(if setresuid seems to work)
diff --git a/defines.h b/defines.h
index 1e3d68d17..41b14fdf7 100644
--- a/defines.h
+++ b/defines.h
@@ -25,7 +25,7 @@
25#ifndef _DEFINES_H 25#ifndef _DEFINES_H
26#define _DEFINES_H 26#define _DEFINES_H
27 27
28/* $Id: defines.h,v 1.139 2007/03/26 16:35:28 tim Exp $ */ 28/* $Id: defines.h,v 1.140 2007/04/29 04:39:03 dtucker Exp $ */
29 29
30 30
31/* Constants */ 31/* Constants */
@@ -68,7 +68,7 @@ enum
68# endif 68# endif
69#endif 69#endif
70 70
71#ifndef MAXSYMLINKS 71#if defined(HAVE_DECL_MAXSYMLINKS) && HAVE_DECL_MAXSYMLINKS == 0
72# define MAXSYMLINKS 5 72# define MAXSYMLINKS 5
73#endif 73#endif
74 74