summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2002-04-23 22:52:45 +1000
committerDamien Miller <djm@mindrot.org>2002-04-23 22:52:45 +1000
commitf5fea44ae33f033a9113ffe52b4e37317e293fc8 (patch)
tree919f3e8aa605da0920cdb9acde6b5ffd867e20e8
parentf6195f2be82cae07660db8f7c3039567f37ffa74 (diff)
- (djm) Define BROKEN_REALPATH for AIX, patch from
Antti Tapaninen <aet@cc.hut.fi>
-rw-r--r--ChangeLog6
-rw-r--r--configure.ac3
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 6fcd57e3a..e78fd929f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,10 @@
2 - (djm) Trim ChangeLog to include only post-3.1 changes 2 - (djm) Trim ChangeLog to include only post-3.1 changes
3 - (djm) Update RPM spec file versions 3 - (djm) Update RPM spec file versions
4 - (djm) Redhat spec enables KrbV by default 4 - (djm) Redhat spec enables KrbV by default
5 - (djm) Applied OpenSC smartcard updates from Markus &
6 Antti Tapaninen <aet@cc.hut.fi>
7 - (djm) Define BROKEN_REALPATH for AIX, patch from
8 Antti Tapaninen <aet@cc.hut.fi>
5 - (djm) Bug #222: Fix tests for getaddrinfo on OSF/1. Spotted by 9 - (djm) Bug #222: Fix tests for getaddrinfo on OSF/1. Spotted by
6 Robert Urban <urban@spielwiese.de> 10 Robert Urban <urban@spielwiese.de>
7 - (djm) Make privsep work with PAM (still experimental) 11 - (djm) Make privsep work with PAM (still experimental)
@@ -476,4 +480,4 @@
476 - (stevesk) entropy.c: typo in debug message 480 - (stevesk) entropy.c: typo in debug message
477 - (djm) ssh-keygen -i needs seeded RNG; report from markus@ 481 - (djm) ssh-keygen -i needs seeded RNG; report from markus@
478 482
479$Id: ChangeLog,v 1.2073 2002/04/23 11:17:17 djm Exp $ 483$Id: ChangeLog,v 1.2074 2002/04/23 12:52:45 djm Exp $
diff --git a/configure.ac b/configure.ac
index d6824c318..b1511e59c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.48 2002/04/23 12:48:46 djm Exp $ 1# $Id: configure.ac,v 1.49 2002/04/23 12:52:46 djm Exp $
2 2
3AC_INIT 3AC_INIT
4AC_CONFIG_SRCDIR([ssh.c]) 4AC_CONFIG_SRCDIR([ssh.c])
@@ -61,6 +61,7 @@ case "$host" in
61 fi 61 fi
62 AC_CHECK_FUNC(authenticate, [AC_DEFINE(WITH_AIXAUTHENTICATE)]) 62 AC_CHECK_FUNC(authenticate, [AC_DEFINE(WITH_AIXAUTHENTICATE)])
63 AC_DEFINE(BROKEN_GETADDRINFO) 63 AC_DEFINE(BROKEN_GETADDRINFO)
64 AC_DEFINE(BROKEN_REALPATH)
64 dnl AIX handles lastlog as part of its login message 65 dnl AIX handles lastlog as part of its login message
65 AC_DEFINE(DISABLE_LASTLOG) 66 AC_DEFINE(DISABLE_LASTLOG)
66 ;; 67 ;;